#room-labels {
    float: left;
    width: 100px;
    height: 100%;
    margin-top: 50px;
}
.room,
#room-labels > div {
    height: 100px;
}

#timelabels-schedule-wrapper {
    width: calc(100vw - 120px);
    overflow: auto;
}
#time-labels {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 50px;
    float: left;
}
#time-labels .slot {
    border: none;
}
#horizontal-schedule {
    float: left;
    position: relative;
}
.room {
    display: flex;
    position: relative;
    z-index: 1;
    flex-direction: row;
    border: 1px solid #0f0f0f;
}
.slot {
    position: relative;
    flex-grow: 1;
    border-left: 1px dotted #ccc;
    width: 24px;
}
.horizontal-session {
    position: relative;
    z-index: 1;
    height: 100%;
    background: #63a563;
}


/* HORICAL */
#horical-wrapper #room-labels {
	background: #F9F9F9;
	margin-top: 0;
	padding: 20px 0;
	width: 175px;
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.2rem;
	word-break: break-word;
}

#timelabels-schedule-wrapper {
	width: calc(100vw - 195px);
	background: #F9F9F9;
	padding: 20px 0;
}

#horical-wrapper #time-labels {
	background: #F9F9F9;
}

#horical-wrapper #time-labels .slot.full-hour {
	padding-left: 0;
	border-left: 0;
}

#horical-wrapper #time-labels .slot.full-hour > span {
	display: none;
}

#horical-wrapper #horizontal-schedule {
	background: #F9F9F9;
	padding-left: 20px;
}

#horical-wrapper #room-labels > div {
	height: calc(150px + 1rem);
	padding-top: 2rem;
	border-right: 1px solid #000;
	overflow: hidden;
}

#horical-wrapper .slot {
	border-left: 0;
	padding-top: 2rem;
}

#horical-wrapper .slot.full-hour {
	border-left: 1px dotted #666;
}

#horical-wrapper .slot.full-hour > span:first-child {
	font-size: .75rem !important;
	font-weight: bold;
	padding-left: .25rem;
	line-height: 1;
	color: rgba(0,0,0,.5);
}

#horical-wrapper .room {
	border: 0;
	height: calc(150px + 1rem);
	padding: .5rem 0;
}

#horical-wrapper .horizontal-session {
	display: block;

	border-color: black;
	border-width: 1px;
    border-radius: var(--border-radius);
	border-style: solid;
	max-height: 150px;
	height: auto;
	overflow: hidden;
	padding: 0.5rem 0.5rem 0rem 0.5rem;
}

#horical-wrapper .horizontal-session .content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: min-content 1fr min-content;
	height: 100%;
	white-space: nowrap;
}

#horical-wrapper .horizontal-session .node__title {
	margin: 0;
	font-size: 1rem;
	grid-column: 1 / span 2;
	grid-row: 1;
	line-height: 1.2;
}

#horical-wrapper .horizontal-session .node__title a:hover {
	color: var(--color-track) !important;
}

#horical-wrapper .horizontal-session .node__title .session-has-partner {
	height: 1.125rem;
	top: 0.2rem;
	margin-left: .5rem;
}

#horical-wrapper .horizontal-session .speaker {
	font-size: .75rem;
	grid-column: 1 / span 2;
	grid-row: 2;
}

#horical-wrapper .horizontal-session .track {
	color: var(--color-track);
	font-weight: bold;
	font-size: .9rem;
	grid-column: 1;
	grid-row: 3;
	padding-top: .5rem;
	font-family: var(--font-heading);
	font-weight: 700;
}

#horical-wrapper .horizontal-session .session-type {
	font-weight: bold;
	font-size: .9rem;
	grid-column: 2;
	grid-row: 3;
	text-align: right;
	padding-top: .5rem;
	padding-left: 1rem;
	font-weight: 700;
}

#horical-wrapper .horizontal-session:hover {
	background: white;
	cursor: pointer;

	min-width: 33vw;
	z-index: 5;
	position: absolute;
	overflow: auto;
	box-shadow: 4px 4px 0 0 rgba(0,0,0,.3);
	max-height: none;
}

#horical-wrapper .horizontal-session:hover .content {
	white-space: normal;
}
/*begin cja murks*/
#horical-wrapper .button-box {
  width: 100%;
  display: inline-flex;
  justify-content: center;
	margin-bottom: 20px;
}
#horical-wrapper .button {
    margin: 0.2rem;
}

#horical-wrapper .current-day-display {
	margin-top: 0;
	padding: 35px 0;
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	width: 100%;
}

#horical-wrapper #room-labels > div {
    height: calc(150px + 1rem);
    border-right: 1px solid #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

@media (max-width: 43.75rem) {
	#horical-wrapper #room-labels {
		padding-top: 50px;
		width: 75px;
		font-size: 1rem;
		word-break: break-word;
	}
	#timelabels-schedule-wrapper {
    width: calc(100vw - 85px);
	}
}
