
/* -------------------------------- 

Main Components 

-------------------------------- */
#calendarul{
	width: 100%;
	height: 100%;
}
.cd-schedule {
  position: relative;
  margin: 2em;
  /*overflow: hidden;*/
}

.displaymeeting{
	cursor:pointer;
}

.cd-schedule::before {
  /* never visible - this is used in js to check the current MQ */
  content: 'mobile';
  display: none;
}
.days {
	margin: 0 2em;
}

.hide {
	display: none;
}

.cd-schedule {
  margin: 0 2.5em;
}
.cd-schedule::after {
  clear: both;
  content: "";
  display: block;
}
@media only screen and (min-width: 1000px) {
  .cd-schedule::before {
    content: 'desktop';
  }
}

.cd-schedule .timeline {
  display: none;
}

.cd-schedule .timeline {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding-top: 100px;/* CHANGE SINCE */
}
.cd-schedule .timeline li {
  position: relative;
  list-style: none;
  height: 100px; /* CHANGE SINCE */
}
.cd-schedule .timeline li::after {
  /* this is used to create the table horizontal lines */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #EAEAEA;
}
.cd-schedule .timeline li:last-of-type::after {
  display: none;
}
.cd-schedule .timeline li span {
  display: none;
}


.cd-schedule .timeline li::after {
  width: calc(100% - 60px);
  left: 60px;
}
.cd-schedule .timeline li span {
  display: inline-block;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cd-schedule .timeline li:nth-of-type(2n) span {
  display: none;
}


.cd-schedule .events {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  min-height: 100vh;
}

.cd-schedule .events .events-group {
  margin-bottom: 30px;
}

.cd-schedule .events .top-info {
  width: 100%;
  padding: 0 5%;
}

.cd-schedule .events .top-info > span {
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 400;
}

.cd-schedule .events .events-group > ul {
  position: relative;
  padding: 0 5%;
  /* force its children to stay on one line */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

.cd-schedule .events .events-group > ul::after {
  /* never visible - used to add a right padding to .events-group > ul */
  display: inline-block;
  content: '-';
  width: 1px;
  height: 100%;
  opacity: 0;
  color: transparent;
}

.cd-schedule .events .single-event {
  /* force them to stay on one line */
  -ms-flex-negative: 0;
      flex-shrink: 0;
  float: left;
  height: 150px;
  width: 70%;
  max-width: 300px;
  margin-right: 20px;
  -webkit-transition: opacity .2s, background .2s;
  transition: opacity .2s, background .2s;
  background: #FFF;
  border-top: 3px solid #F2F2F2;
}
.cd-schedule .events .single-event > div.contentsession{
  padding: 1.5rem 0.1rem 0.1rem 0.1rem;
  height: 100%;
  display: flex;
  justify-content: start;
  flex-direction: column;
}
.cd-schedule .events .single-event[data-event="session"]{
	padding: 0px 10px;
	color: white;
	border: 0px;
}
.cd-schedule .events .single-event.fav > div.contentsession {
	padding: 15px 40px 5px 5px;
}
.contentsession .keynote-picturediv{ justify-content:center; }
.cd-schedule .events .single-event:last-of-type {
  margin-right: 5%;
}

.cd-schedule .events .single-event a {
  display: block;
  height: 100%;
  padding: 5px;
}

  .cd-schedule .events .single-event {
    width: 40%;
  }


  .cd-schedule .events {
    float: left;
    width: 100%;
  }
  .cd-schedule .events .events-group {
    /*float: left;
    border: 1px solid #EAEAEA;*/
    position: absolute;
    /* reset style */
    margin-bottom: 0;
  }
  .cd-schedule .events .events-group.licol {
    
    list-style: none;
    padding: 0 10px;
    /*width:33%;*/
    /*height: 100%;*/
  }
  .cd-schedule .events .events-group.licol{
	  width: 250px;
  }
  .cd-schedule .events .events-group.licol .top-info{
	  width: 230px;
  }
  .cd-schedule .events .events-group.licol.FB{
	width: 150px;
	z-index: 9;
  }
   .cd-schedule .events .events-group.licol.FB .top-info{
	width: 130px;
  }
  .cd-schedule .events .events-group.li4 {
    width: calc(25% - 10px);
  }

  .cd-schedule .events .events-group.li3 {
    width: calc(33% - 13px);
  }

  .cd-schedule .events .events-group.li2 {
    width: calc(50% - 20px);
  }

  .cd-schedule .events .events-group.li1 {
    width: calc(100% - 0px);
    padding: 0 0px 0 10px;
    z-index: 10;
  }
  .cd-schedule .events .events-group.li4 .top-info, .cd-schedule .events .events-group.li3 .top-info, .cd-schedule .events .events-group.li2 .top-info,.cd-schedule .events .events-group.li1 .top-info{
	  width: calc(100%);
  }
  .cd-schedule .events .events-group.li1 li {
	text-align: center;	  
  }
  .cd-schedule .events .events-group:not(:first-of-type) {
    border-left-width: 0;
  }
  .cd-schedule .events .top-info {
    /* vertically center its content */
    display: flex;
    height: 100px;/* CHANGE SINCE */
    border-bottom: 0px solid #EAEAEA;
    background-color: var(--primary);
    color: var(--alt-color);
    font-weight: 400;
    justify-content: center;
    align-items: center;
    /* reset style */
    padding: 0;
  	z-index: 30;
  }
  .cd-schedule .events .top-info.fixed{
	position : fixed;
	top: 190px;
    height: 60px;
  }
  @media (min-width: 1000px){
    .cd-schedule .events .events-group.li4 .top-info.fixed{
  	  width: calc((100% - 300px - 6rem - 5em - 60px) / 4 - 30px);
    }
    .cd-schedule .events .events-group.li3 .top-info.fixed{
	    width: calc((100% - 300px - 6rem - 5em - 60px) / 3 - 30px);
    }
    .cd-schedule .events .events-group.li2 .top-info.fixed{
	    width: calc((100% - 300px - 6rem - 5em - 60px) / 2 - 30px);
    }
    .cd-schedule .events .events-group.li1 .top-info.fixed{
      width: calc((100% - 300px - 6rem - 5em - 60px));
    }
}  
  
  
  @media (max-width: 1000px){
    .cd-schedule { margin: 0; }
  
  
   .cd-schedule .events .events-group.licol .top-info.fixed{
      width: calc((100% - 8rem));
    }

  }
  .cd-schedule .events .top-info > span {
    padding: .5em;
    text-align: center;
    margin-bottom: 0;
    overflow: hidden;
    white-space: normal;
  }
  .cd-schedule .events .events-group > ul {
    height: 100%;
    /* reset style */
    display: block;
    overflow: visible;
    padding: 0;
  }
  .cd-schedule .events .events-group.li1:not(.licol) > ul, .cd-schedule .events .events-group.fixed > ul, .cd-schedule .events .events-group.li1.NORMAL.fixed > ul {
    margin-top: 100px;/* CHANGE SINCE */
  }
  .cd-schedule .events .events-group.li1.NORMAL > ul {
    margin-top: 0;
  }
  
  .cd-schedule .events .events-group > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-schedule .events .events-group > ul::after {
    /* reset style */
    display: none;
  }
  .cd-schedule .events .single-event {
    position: absolute;
    z-index: 3;
    /* top position and height will be set using js */
    width: calc(100%);
    left: 0px;
    /* reset style */
    -ms-flex-negative: 1;
        flex-shrink: 1;
    height: auto;
    max-width: none;
    margin: 0;
    overflow: hidden;
    transition: width 1s, height 1s;
  }
  .cd-schedule .events .single-event:hover {
	height: initial;
	/*width: 200%;*/
	z-index: 1000;
  }
  .cd-schedule .events .single-event:hover[data-event="wg"], .cd-schedule .events .single-event:hover[data-event="fb"], .cd-schedule .events .single-event:hover[data-event="session"]{
	z-index: 3;
  }
  .cd-schedule .events .single-event a {
    /*padding: 1.2em;*/
  }
  .cd-schedule .events .single-event:last-of-type {
    /* reset style */
    margin-right: 0;
  }
  .cd-schedule .events .single-event.selected-event {
    /* the .selected-event class is added when an user select the event */
    visibility: hidden;
  }


  .cd-schedule .events {
    /* 60px is the .timeline element width */
    width: calc(100% - 60px);
    margin-left: 60px;
    overflow-x: hidden;
    overflow-y: hidden;
  }


.cd-schedule.loading .events .single-event {
  /* the class .loading is added by default to the .cd-schedule element
	   it is removed as soon as the single events are placed in the schedule plan (using javascript) */
  opacity: 0;
}

.cd-schedule ul {
	text-align: left;
}
.cd-schedule .event-name,
.cd-schedule .event-date {
  display: block;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-schedule .event-name {
  /*font-size: 0.9em;*/
}

  .cd-schedule .event-name {
    /*font-size: 0.9em;*/
  }
  .cd-schedule .events .single-event[data-event="session"] {
    z-index:8;
    min-height: 20px;
  }
  .cd-schedule [data-event="session"] .event-name {
    font-size: 0.9em;
  }


.cd-schedule .event-date {
  /* they are not included in the the HTML but added using JavScript */
  font-size: 0.9em;
  opacity: .7;
  line-height: 1.2;
  margin-bottom: .2em;
}

.cd-schedule .single-event[data-event="event-1"],
.cd-schedule [data-event="event-1"] .header-bg {
  /* this is used to set a background color for the event and the modal window */
  background: #577F92;
}

.cd-schedule .single-event[data-event="event-1"]:hover {
  background: #618da1;
}

.cd-schedule .single-event[data-event="event-2"],
.cd-schedule [data-event="event-2"] .header-bg {
  background: #443453;
}

.cd-schedule .single-event[data-event="event-2"]:hover {
  background: #513e63;
}

.cd-schedule .single-event[data-event="event-3"],
.cd-schedule [data-event="event-3"] .header-bg {
  background: #A2B9B2;
}

.cd-schedule .single-event[data-event="event-3"]:hover {
  background: #b1c4be;
}

.cd-schedule .single-event[data-event="event-4"],
.cd-schedule [data-event="event-4"] .header-bg {
  background: #f6b067;
}

.cd-schedule .single-event[data-event="event-4"]:hover {
  background: #f7bd7f;
}





.cd-schedule [data-event="KeynotePlenary"] .header-bg,
.fancybox-content [data-event="KeynotePlenary"] .header-bg{
  background-color: #7A4F7F;
}
.cd-schedule [data-event="KeynotePlenary"] .event-modal .body,
.fancybox-content [data-event="KeynotePlenary"] .header-bg{
  background-color: #7A4F7F40;
}

.filterHeader .checkbox[data-type="KeynotePlenary"] {
    border: 3px solid #7A4F7F;
}
.cd-schedule .single-event[data-event="KeynotePlenary"] > div.contentsession {
    background-color: #7A4F7F40;
    border-left: #7A4F7F 10px solid;
}
.filterHeader .selected .checkbox[data-type="KeynotePlenary"]:before {
    background: #7A4F7F;
    color: #FFFFFF;
}


.cd-schedule [data-event="InvitedContent"] .header-bg,
.fancybox-content [data-event="InvitedContent"] .header-bg{
  background-color: #95B7D5;
}
.cd-schedule [data-event="InvitedContent"] .event-modal .body,
.fancybox-content [data-event="InvitedContent"] .header-bg{
  background-color: #95B7D540;
}

.filterHeader .checkbox[data-type="InvitedContent"] {
    border: 3px solid #95B7D5;
}
.cd-schedule .single-event[data-event="InvitedContent"] > div.contentsession {
    background-color: #95B7D540;
    border-left: #95B7D5 10px solid;
}
.filterHeader .selected .checkbox[data-type="InvitedContent"]:before {
    background: #95B7D5;
    color: #FFFFFF;
}


.cd-schedule [data-event="Paper"] .header-bg,
.fancybox-content [data-event="Paper"] .header-bg{
  background-color: #2B6FAA;
}
.cd-schedule [data-event="Paper"] .event-modal .body,
.fancybox-content [data-event="Paper"] .header-bg{
  background-color: #2B6FAA40;
}

.filterHeader .checkbox[data-type="Paper"] {
    border: 3px solid #2B6FAA;
}
.cd-schedule .single-event[data-event="Paper"] > div.contentsession {
    background-color: #2B6FAA40;
    border-left: #2B6FAA 10px solid;
}
.filterHeader .selected .checkbox[data-type="Paper"]:before {
    background: #2B6FAA;
    color: #FFFFFF;
}


.cd-schedule [data-event="Presentation"] .header-bg,
.fancybox-content [data-event="Presentation"] .header-bg{
  background-color: #69AF99;
}
.cd-schedule [data-event="Presentation"] .event-modal .body,
.fancybox-content [data-event="Presentation"] .header-bg{
  background-color: #69AF9940;
}

.filterHeader .checkbox[data-type="Presentation"] {
    border: 3px solid #69AF99;
}
.cd-schedule .single-event[data-event="Presentation"] > div.contentsession {
    background-color: #69AF9940;
    border-left: #69AF99 10px solid;
}
.filterHeader .selected .checkbox[data-type="Presentation"]:before {
    background: #69AF99;
    color: #FFFFFF;
}


.cd-schedule [data-event="KeyReservePaper"] .header-bg,
.fancybox-content [data-event="KeyReservePaper"] .header-bg{
  background-color: #414042;
}
.cd-schedule [data-event="KeyReservePaper"] .event-modal .body,
.fancybox-content [data-event="KeyReservePaper"] .header-bg{
  background-color: #41404240;
}

.filterHeader .checkbox[data-type="KeyReservePaper"] {
    border: 3px solid #414042;
}
.cd-schedule .single-event[data-event="KeyReservePaper"] > div.contentsession {
    background-color: #41404240;
    border-left: #414042 10px solid;
}
.filterHeader .selected .checkbox[data-type="KeyReservePaper"]:before {
    background: #414042;
    color: #FFFFFF;
}


.cd-schedule [data-event="Panel"] .header-bg,
.fancybox-content [data-event="Panel"] .header-bg{
  background-color: #FFC90E;
}
.cd-schedule [data-event="Panel"] .event-modal .body,
.fancybox-content [data-event="Panel"] .header-bg{
  background-color: #FFC90E40;
}

.filterHeader .checkbox[data-type="Panel"] {
    border: 3px solid #FFC90E;
}
.cd-schedule .single-event[data-event="Panel"] > div.contentsession {
    background-color: #FFC90E40;
    border-left: #FFC90E 10px solid;
}
.filterHeader .selected .checkbox[data-type="Panel"]:before {
    background: #FFC90E;
    color: #414042;
}


.cd-schedule [data-event="Tutorial"] .header-bg,
.fancybox-content [data-event="Tutorial"] .header-bg{
  background-color: #427F65;
}
.cd-schedule [data-event="Tutorial"] .event-modal .body,
.fancybox-content [data-event="Tutorial"] .header-bg{
  background-color: #427F6540;
}

.filterHeader .checkbox[data-type="Tutorial"] {
    border: 3px solid #427F65;
}
.cd-schedule .single-event[data-event="Tutorial"] > div.contentsession {
    background-color: #427F6540;
    border-left: #427F65 10px solid;
}
.filterHeader .selected .checkbox[data-type="Tutorial"]:before {
    background: #427F65;
    color: #FFFFFF;
}


.cd-schedule [data-event="INCOSEContent"] .header-bg,
.fancybox-content [data-event="INCOSEContent"] .header-bg{
  background-color: #69B3F4;
}
.cd-schedule [data-event="INCOSEContent"] .event-modal .body,
.fancybox-content [data-event="INCOSEContent"] .header-bg{
  background-color: #69B3F440;
}

.filterHeader .checkbox[data-type="INCOSEContent"] {
    border: 3px solid #69B3F4;
}
.cd-schedule .single-event[data-event="INCOSEContent"] > div.contentsession {
    background-color: #69B3F440;
    border-left: #69B3F4 10px solid;
}
.filterHeader .selected .checkbox[data-type="INCOSEContent"]:before {
    background: #69B3F4;
    color: #FFFFFF;
}


.cd-schedule [data-event="Workshop"] .header-bg,
.fancybox-content [data-event="Workshop"] .header-bg{
  background-color: #567F42;
}
.cd-schedule [data-event="Workshop"] .event-modal .body,
.fancybox-content [data-event="Workshop"] .header-bg{
  background-color: #567F4240;
}

.filterHeader .checkbox[data-type="Workshop"] {
    border: 3px solid #567F42;
}
.cd-schedule .single-event[data-event="Workshop"] > div.contentsession {
    background-color: #567F4240;
    border-left: #567F42 10px solid;
}
.filterHeader .selected .checkbox[data-type="Workshop"]:before {
    background: #567F42;
    color: #FFFFFF;
}


.cd-schedule [data-event="BusinessMeeting"] .header-bg,
.fancybox-content [data-event="BusinessMeeting"] .header-bg{
  background-color: #c1f7c1;
}
.cd-schedule [data-event="BusinessMeeting"] .event-modal .body,
.fancybox-content [data-event="BusinessMeeting"] .header-bg{
  background-color: #c1f7c140;
}

.filterHeader .checkbox[data-type="BusinessMeeting"] {
    border: 3px solid #c1f7c1;
}
.cd-schedule .single-event[data-event="BusinessMeeting"] > div.contentsession {
    background-color: #c1f7c140;
    border-left: #c1f7c1 10px solid;
}
.filterHeader .selected .checkbox[data-type="BusinessMeeting"]:before {
    background: #c1f7c1;
    color: #414042;
}


.cd-schedule [data-event="WorkingGroup"] .header-bg,
.fancybox-content [data-event="WorkingGroup"] .header-bg{
  background-color: #DAAE28;
}
.cd-schedule [data-event="WorkingGroup"] .event-modal .body,
.fancybox-content [data-event="WorkingGroup"] .header-bg{
  background-color: #DAAE2840;
}

.filterHeader .checkbox[data-type="WorkingGroup"] {
    border: 3px solid #DAAE28;
}
.cd-schedule .single-event[data-event="WorkingGroup"] > div.contentsession {
    background-color: #DAAE2840;
    border-left: #DAAE28 10px solid;
}
.filterHeader .selected .checkbox[data-type="WorkingGroup"]:before {
    background: #DAAE28;
    color: #FFFFFF;
}


.cd-schedule [data-event="SponsorExhibitor"] .header-bg,
.fancybox-content [data-event="SponsorExhibitor"] .header-bg{
  background-color: #EE5B21;
}
.cd-schedule [data-event="SponsorExhibitor"] .event-modal .body,
.fancybox-content [data-event="SponsorExhibitor"] .header-bg{
  background-color: #EE5B2140;
}

.filterHeader .checkbox[data-type="SponsorExhibitor"] {
    border: 3px solid #EE5B21;
}
.cd-schedule .single-event[data-event="SponsorExhibitor"] > div.contentsession {
    background-color: #EE5B2140;
    border-left: #EE5B21 10px solid;
}
.filterHeader .selected .checkbox[data-type="SponsorExhibitor"]:before {
    background: #EE5B21;
    color: #FFFFFF;
}


.cd-schedule [data-event="SocialEvent"] .header-bg,
.fancybox-content [data-event="SocialEvent"] .header-bg{
  background-color: #a58eef;
}
.cd-schedule [data-event="SocialEvent"] .event-modal .body,
.fancybox-content [data-event="SocialEvent"] .header-bg{
  background-color: #a58eef40;
}

.filterHeader .checkbox[data-type="SocialEvent"] {
    border: 3px solid #a58eef;
}
.cd-schedule .single-event[data-event="SocialEvent"] > div.contentsession {
    background-color: #a58eef40;
    border-left: #a58eef 10px solid;
}
.filterHeader .selected .checkbox[data-type="SocialEvent"]:before {
    background: #a58eef;
    color: #FFFFFF;
}


.cd-schedule [data-event="FB"] .header-bg,
.fancybox-content [data-event="FB"] .header-bg{
  background-color: #a58eef;
}
.cd-schedule [data-event="FB"] .event-modal .body,
.fancybox-content [data-event="FB"] .header-bg{
  background-color: #a58eef40;
}

.filterHeader .checkbox[data-type="FB"] {
    border: 3px solid #a58eef;
}
.cd-schedule .single-event[data-event="FB"] > div.contentsession {
    background-color: #a58eef40;
    border-left: #a58eef 10px solid;
}
.filterHeader .selected .checkbox[data-type="FB"]:before {
    background: #a58eef;
    color: #FFFFFF;
}


.cd-schedule [data-event="Logistic"] .header-bg,
.fancybox-content [data-event="Logistic"] .header-bg{
  background-color: #C2C2C2;
}
.cd-schedule [data-event="Logistic"] .event-modal .body,
.fancybox-content [data-event="Logistic"] .header-bg{
  background-color: #C2C2C240;
}

.filterHeader .checkbox[data-type="Logistic"] {
    border: 3px solid #C2C2C2;
}
.cd-schedule .single-event[data-event="Logistic"] > div.contentsession {
    background-color: #C2C2C240;
    border-left: #C2C2C2 10px solid;
}
.filterHeader .selected .checkbox[data-type="Logistic"]:before {
    background: #C2C2C2;
    color: #02213E;
}


.cd-schedule [data-event="Misc"] .header-bg,
.fancybox-content [data-event="Misc"] .header-bg{
  background-color: #C2C2C2;
}
.cd-schedule [data-event="Misc"] .event-modal .body,
.fancybox-content [data-event="Misc"] .header-bg{
  background-color: #C2C2C240;
}

.filterHeader .checkbox[data-type="Misc"] {
    border: 3px solid #C2C2C2;
}
.cd-schedule .single-event[data-event="Misc"] > div.contentsession {
    background-color: #C2C2C240;
    border-left: #C2C2C2 10px solid;
}
.filterHeader .selected .checkbox[data-type="Misc"]:before {
    background: #C2C2C2;
    color: #02213E;
}

.cd-schedule .single-event[data-event="session"],
.cd-schedule [data-event="session"] .header-bg,
.fancybox-content [data-event="session"] .header-bg{
  background: #7F7F7F;
}

.cd-schedule .single-event[data-event="session"]:hover {
  background: #7F7F7F;
}


.cd-schedule .event-modal {
  position: fixed;
  z-index: 1003;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  /* Force Hardware acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: visibility .4s, -webkit-transform .4s;
  transition: visibility .4s, -webkit-transform .4s;
  transition: transform .4s, visibility .4s;
  transition: transform .4s, visibility .4s, -webkit-transform .4s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
          transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
  overflow: hidden;
  background-color:white;
}

.event-modal .modalheader {
  position: relative;
  height: 70px;
  /* vertically center its content */
  display: table;
  width: 100%;
}

.event-modal .modalheader .content {
  position: relative;
  z-index: 3;
  /* vertically center inside its parent */
  display: table-cell;
  vertical-align: middle;
  padding: .6em 5%;
}

.event-modal .body {
  position: relative;
  width: 100%;
  /* 70px is the .modalheader height */
  height: calc(100% - 70px);
}

.event-modal .event-info {
  position: relative;
  z-index: 2;
  line-height: 1.4;
  height: 100%;
  overflow: hidden;
}

.event-modal .event-info > div {
  overflow: auto;
  height: 100%;
  padding: 1.4em 5%;
}

.event-modal .header-bg,  .event-modal .body-bg,.fancybox-content .header-bg {
  /* these are the morphing backgrounds - visible on desktop only */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

 .event-modal .body-bg,.fancybox-content .body-bg {
  z-index: 1;
  background: white;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
}

.cd-schedule .event-modal .header-bg,.fancybox-content .header-bg {
  z-index: 2;
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
}

.cd-schedule .event-modal .close {
  /* this is the 'X' icon */
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.1);
  /* replace text with icon */
  color: transparent;
  white-space: nowrap;
  text-indent: 100%;
  height: 70px;
  width: 70px;
}

.cd-schedule .event-modal .close::before, .cd-schedule .event-modal .close::after {
  /* these are the two lines of the 'X' icon */
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 22px;
  background: white;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cd-schedule .event-modal .close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-schedule .event-modal .close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cd-schedule .event-modal .event-date {
  display: none;
}

.cd-schedule .event-modal.no-transition {
  -webkit-transition: none;
  transition: none;
}

.cd-schedule .event-modal.no-transition .header-bg, .cd-schedule .event-modal.no-transition .body-bg,.fancybox-content .body-bg,.fancybox-content .header-bg {
  -webkit-transition: none;
  transition: none;
}
@media (min-width: 1000px){
  .cd-schedule .event-modal {
    /* reset style */
    right: auto;
    width: auto;
    height: auto;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    will-change: transform, width, height;
    -webkit-transition: height .4s, width .4s, visibility .4s, -webkit-transform .4s;
    transition: height .4s, width .4s, visibility .4s, -webkit-transform .4s;
    transition: height .4s, width .4s, transform .4s, visibility .4s;
    transition: height .4s, width .4s, transform .4s, visibility .4s, -webkit-transform .4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
            transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
  }
  .cd-schedule .event-modal .modalheader {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    
    min-width:120px;
  }
  .cd-schedule .event-modal .modalheader .content {
    /* reset style */
    display: block;
    padding: .8em;
  }
  .cd-schedule .event-modal .event-info > div {
    padding: 2em 3em 2em 2em;
  }
  .cd-schedule .event-modal .body {
    height: 100%;
    width: auto;
  }
  .cd-schedule .event-modal .header-bg, .cd-schedule .event-modal .body-bg,.fancybox-content .body-bg,.fancybox-content .header-bg {
    /* Force Hardware acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .cd-schedule .event-modal .header-bg,.fancybox-content .header-bg {
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
            transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
    min-width: 120px;
  }
  .cd-schedule .event-modal .body-bg {
    opacity: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .cd-schedule .event-modal .event-date {
    display: block;
  }
  .cd-schedule .event-modal .close, .cd-schedule .event-modal .event-info {
    opacity: 0;
  }
  .cd-schedule .event-modal .close {
    width: 40px;
    height: 40px;
    background: transparent;
  }
  .cd-schedule .event-modal .close::after, .cd-schedule .event-modal .close::before {
    background: #222222;
    height: 16px;
  }

  .cd-schedule .event-modal .modalheader .content {
    padding: 12px;
    min-width:120px;
  }
}

.cd-schedule.modal-is-open .event-modal {
  /* .modal-is-open class is added as soon as an event is selected */
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}

.cd-schedule.modal-is-open .event-modal .event-info > div {
  /* smooth scroll on iOS touch devices */
  -webkit-overflow-scrolling: touch;
}

  .cd-schedule.animation-completed .event-modal .close,
  .cd-schedule.content-loaded.animation-completed .event-modal .event-info {
    /* 	the .animation-completed class is added when the modal animation is completed
			the .content-loaded class is added when the modal content has been loaded (using ajax) */
    opacity: 1;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .cd-schedule.modal-is-open .body-bg {
    opacity: 1;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
            transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
  }


.cd-schedule .cover-layer {
  /* layer between the content and the modal window */
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s;
}

.cd-schedule.modal-is-open .cover-layer {
  opacity: 1;
  visibility: visible;
}
.single-event span.linkmeeting, .event-modal span.linkmeeting{
	background:var(--primary);
	color: var(--alt-color);
  margin-top: 4px;
	padding: 3px 7px;
	text-align: center;
	z-index: 20;
  border-radius: 5px;
}
.event-modal span.linkmeeting{
  display: table;
}
.single-event .tags, .single-event .linkmeeting{
	display: none;
}
.single-event .tags:empty, .single-event .linkmeeting:empty{
  display: none !important;
}
/*.li1 .single-event .column.time, .li1 .single-event .tags, .li1 .single-event .linkmeeting{
	display: block;
}
.li1 .single-event .linkmeeting{
	display: inline-block;
}*/

.item .timealltime {
	display: none;
}
.item .timealltime .start {
    line-height: 16px;
    font-weight: 400;
    color: #52575f;
}

span.room {
    float: none;
    position: absolute;
    right: 10px;
    top: 5px;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    z-index: 19;
}

.licol.liover, .licol:hover{
	z-index: 20 !important;
}
.viewlarge, .licol .displaymeeting:hover{
	/*width: 800px !important;
	max-width: 90vw !important;
	min-height: 250px !important;
	z-index: 20 !important;
	transition: width 0.5s;
	left: 0px !important;
}

.li1 .viewlarge, .li1 .displaymeeting:hover{
	width: 100% !important;
	min-height: 250px !important;
	z-index: 20 !important;
	transition: width 0.5s;
	left: 0px !important;*/
}


.viewlarge .tags, .li1 .displaymeeting:hover .tags{
	display: block;
}
.single-event .column.time{
  opacity:0;
  position: absolute;
  left:0.7rem;
  top: 0;
  display: flex;
}
.single-event .column.time > div{ margin-right: 0.5rem;}
.viewlarge .column.time, .li1 .displaymeeting:hover  .column.time, .licol .displaymeeting:hover  .column.time{
  opacity: 1;
}
.tags{
	margin: 10px 0;
}

.viewlarge .linkmeeting, .licol .displaymeeting:hover .linkmeeting, .li1 .displaymeeting:hover .linkmeeting{
	display: inline-block;
}

.breaks {
	z-index:0;
}


.cd-schedule .events .item.FB {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 5%, transparent 5%, transparent 10%, rgba(255, 255, 255, 0.4) 10%, rgba(255, 255, 255, 0.4) 15%, transparent 15%, transparent 20%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 30%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.4) 35%, transparent 35%, transparent 40%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.4) 45%, transparent 45%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 55%, transparent 55%, transparent 60%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0.4) 65%, transparent 65%, transparent 70%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent 80%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0.4) 85%, transparent 85%, transparent 90%, rgba(255, 255, 255, 0.4) 90%, rgba(255, 255, 255, 0.4) 95%, transparent 95%, transparent 100%, rgba(255, 255, 255, 0.4) 100%, transparent);
    background-color: #F2F2F2;
    border-top: 0px;
}

.sessionitem{
	display: none !important;
}

.single-event:hover ~ .sessionitem{
	display: block !important;
}




.trackname{
	font-size: 1.2em;
	font-weight: 900;
	
}

.icon_grids{
	font-size: 2em;
	float: left;
	margin-right: 10px;
	color: var(--primary);
}
.fancybox-button svg{
  color: white;
}

@media (max-width: 999px){
  .cd-schedule .events .events-group{
    width: 100% !important;
  }

  .cd-schedule .events .events-group.licol.FB .top-info, .cd-schedule .events .events-group.licol .top-info {
    width: 100%;
  }
  
  .cd-schedule .events {
    margin-left: 30px;
  }
  .cd-schedule .event-modal .modalheader {
    position: relative;
    height: 70px;
    min-height: 70px;
    /* vertically center its content */
    display: table;
    width: 100%;
  }
  
  .cd-schedule .event-modal .modalheader .content {
    position: relative;
    z-index: 3;
    /* vertically center inside its parent */
    display: table-cell;
    vertical-align: middle;
    padding: .6em 5%;
  }
  
  .cd-schedule .event-modal .body {
    position: relative;
    width: 100%;
    /* 70px is the .header height */
    height: calc(100% - 70px);
  }
}