@charset "utf-8";

/* INFO schedule global layout >>> */
.schedule h3 {
	margin: 0 0 15px 0;
}

a.btn.btn-favorite {
	margin: 1em 0 0 0;
	padding: 0;
	background: transparent;
	font-size: 20px;
	color: #eee;
	text-shadow: 0 0 2px #8c1728;
	transition: color linear .2s;
}
a.btn.btn-favorite.active {
	color: #b81e22;
}

.text-right {
	text-align: right;
}
/* <<< */

/* INFO categories >>> */
.skjl-fltr-sep {
	margin: 15px 0;
	border: none;
	height: 1px;
	background: #ba1f22;
}

ul.skjl-cats {
	margin: 0;
}

ul.skjl-cats li {
	display: inline-block;
}

/* INFO custom checkbox */
ul.skjl-cats input[type=checkbox],
input[type=checkbox].custom {
	display: none;
}

ul.skjl-cats input[type=checkbox] + label,
input[type=checkbox].custom + label {
	display: inline-block;
	margin-right: 1em;
	margin-bottom: 5px;
	padding: 5px;
	box-shadow: 1px 1px 5px rgba(100, 100, 100, 0.4);
	border-radius: 5px;
	cursor: pointer;
}
ul.skjl-cats input[type=checkbox] + label:hover,
input[type=checkbox].custom + label:hover {
	box-shadow: 1px 1px 5px rgba(100, 100, 100, 0.2);
}

ul.skjl-cats input[type=checkbox] + label::before,
input[type=checkbox].custom + label::before {
	content: "　";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	text-align: center;
	line-height: 1em;
	background: hsl(0, 0%, 90%);
	border-radius: 3px;
}

ul.skjl-cats input[type=checkbox]:checked + label::before,
input[type=checkbox].custom:checked + label::before {
	font-family: "Font Awesome 5 Free"; font-weight: 900;
	content: "\f00c"; /* checkmark */
	color: black;
}
/* <<< */

/* INFO calendar layout >>> */
.schedule .calendar {
	position: relative;
	margin-top: 2em;
	padding: 1px 0 1em 0;
	background: #fff3f3;
}

/*shared container for fixed header and scrollable schedule*/
.schedule .calendar:not(.today-only) .calendar-container {
	display: flex;
	flex-flow: row nowrap;
	padding: 10px;
	overflow-x: hidden;
}


.schedule .calendar:not(.today-only) {
	cursor: ew-resize;
	-ms-user-select: none; /* IE / Edge */
	user-select: none;
}

.schedule .calendar:not(.today-only).scrollable-right::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 20px;
	z-index: 8;

/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}

.schedule .calendar:not(.today-only).scrollable-left::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 20px;
	z-index: 8;

/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffe0e0+100&1+0,0+99 */
background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,224,224,0) 99%, rgba(255,224,224,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,224,224,0) 99%,rgba(255,224,224,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,224,224,0) 99%,rgba(255,224,224,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffe0e0',GradientType=1 ); /* IE6-9 */
}

.schedule .calendar:not(.today-only) .day {
	/* width: 250px; */
	flex: 0 0 350px;
	margin-right: 1em;
	padding-right: 1em;
}
.schedule .day:not(:last-child) {
	border-right: 1px dotted grey;
}

.schedule .day-title {
	position: relative;
	text-align: center;
	font-size: 120%;
	margin-top: 1.2em;
}

.schedule .day-title.today::before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -100%);
	display: inline-block;
	margin: 0 auto 5px auto;
	padding: 2px 5px;
	content: "Today";
	color: white;
	font-size: 11px;
	background: #0026ff;
}
.schedule .day-title.today::after {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 8px;
	height: 5px;
	background: url(../images/today_triangle.png) center bottom no-repeat;
}

.schedule .event {
	margin-top: 1em;
}

.event-hour {
	float: left;
	width: 100px;
	box-sizing: border-box;
	text-align: right;
	padding-right: 1em;
}

.event-box {
	float: left;
	width: 250px;
	box-sizing: border-box;
	padding: 5px;
	border-radius: 5px;
	background: hsl(0, 0%, 97%);
	cursor: pointer;
	box-shadow: 0 0 3px rgba(100, 100, 100, 0.5);
}
.event-box::after {
	content: "";
	display: table;
	clear: both;
}
.calendar.today-only .event-box {
	float: none;
	width: auto;
	margin-left: 100px;
	margin-right: 15px;
}

.event-title {
	font-weight: bold;
}

.event-speaker {
	color: #777;
	text-shadow: 1px 1px 1px white;
}

.event-length {
	float: right;
	margin: -5px -5px 0 5px;
	padding: 0 5px;
	color: #777;
	background: white;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.event-speakers-others {
	color: #777;
	text-shadow: 1px 1px 1px white;
	text-align: justify;
	display: none;
}

.event-content {
	display: none;
	margin: 1em 0;
}

.event-categorytag {
	float: left;
	margin-left: -5px;
	padding: 0 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.event-location {
	/*text-align: right;*/
	float: right;
	color: #777;
	text-shadow: 1px 1px 1px white;
}

/* add okabe 2023/02/10 >>> */
.event-link {
	margin-top:8px;
}
.skjl-2359-sep {
	margin: 30px 0 0 20px;
	border: none;
	height: 6px;
	background: linear-gradient(to top, #f9998f, #fff3f3);
}
/* <<< */

/* headroom schedule headers */
#schedule-header-toolbar {
	display: none;
	box-sizing: border-box;
	position: fixed;
	background: white;
	border-bottom: 1px solid lightgrey;
}

#schedule-frame.header-locked            #schedule-header-toolbar {
	display: flex;
	z-index: 5;
}
#schedule-frame.header-locked.today-only #schedule-header-toolbar {
	display: block;
}

.schedule-share-box {
	text-align: right;
}
.schedule-share-box input {
	border: 1px solid #ba1f22;
	vertical-align: middle;
	padding: 2px 5px;
	text-align: right;
	width: 250px;
}
.schedule-share-box a {
	color: #ba1f22;
	font-size: 18px;
	vertical-align: middle;
}

.schedule-share-tooltip {
	padding: 5px;
	font-size: 12px;
	background: black;
	color: white;
}
/* <<< */

/*INFO calendar Event Details >>>*/
#event-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 11;
	background: rgba(0, 0, 0, 0.8);
}

#event-details {
	position: fixed;
	top: 50px;
	left: 50%;
	z-index: 12;
	max-width: 50%;
	min-width: 300px;
	height: 80%;
	transform: translateX(-50%);
	background: white;
	padding: 15px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#event-details .event-speakers-others {
	display: block;
}
#event-details .event-content {
	display: block;
}
#event-details .event-categorytag {
	margin-left: 0;
	border-radius: 5px;
}
/*<<<*/

/* INFO categories specific >>> */
.schedule .event.light-green .event-box {
	/* border-left: 3px solid hsl(51, 90%, 50%); */
	border-left: 3px solid #ddff2f;
}
.event-categorytag.light-green,
ul.skjl-cats .light-green input[type=checkbox] + label::before {
	/* background: hsl(51, 90%, 50%); */
	background: #ddff2f;
}
.schedule .event.purple .event-box {
	/* border-left: 3px solid hsl(51, 90%, 50%); */
	border-left: 3px solid #ddadf5;
}
.event-categorytag.purple,
ul.skjl-cats .purple input[type=checkbox] + label::before {
	/* background: hsl(51, 90%, 50%); */
	background: #ddadf5;
}
.schedule .event.light-orange .event-box {
	/* border-left: 3px solid hsl(51, 90%, 50%); */
	border-left: 3px solid #ffeb0d;
}
.event-categorytag.light-orange,
ul.skjl-cats .light-orange input[type=checkbox] + label::before {
	/* background: hsl(51, 90%, 50%); */
	background: #ffeb0d;
}

.schedule .event.yellow .event-box {
	/* border-left: 3px solid hsl(303, 50%, 80%); */
	border-left: 3px solid #fdfbb1;
}
.event-categorytag.yellow,
ul.skjl-cats .yellow input[type=checkbox] + label::before {
	/* background: hsl(303, 50%, 80%); */
	background: #fdfbb1;
}

.schedule .event.light-blue .event-box {
	/* border-left: 3px solid hsl(25, 50%, 80%); */
	border-left: 3px solid #beecf1;
}
.event-categorytag.light-blue,
ul.skjl-cats .light-blue input[type=checkbox] + label::before {
	/* background: hsl(25, 50%, 80%); */
	background: #beecf1;
}

.schedule .event.green .event-box {
	/* border-left: 3px solid hsl(25, 50%, 80%); */
	border-left: 3px solid #beffaa;
}
.event-categorytag.green,
ul.skjl-cats .green input[type=checkbox] + label::before {
	/* background: hsl(25, 50%, 80%); */
	background: #beffaa;
}

.schedule .event.blue .event-box {
	/* border-left: 3px solid hsl(260, 50%, 80%); */
	border-left: 3px solid #ccd2fd;
}
.event-categorytag.blue,
ul.skjl-cats .blue input[type=checkbox] + label::before {
	/* background: hsl(260, 50%, 80%); */
	background: #ccd2fd;
}

.schedule .event.pink .event-box {
	/* border-left: 3px solid hsl(217, 50%, 80%); */
	border-left: 3px solid #ffc3c3;
}
.event-categorytag.pink,
ul.skjl-cats .pink input[type=checkbox] + label::before {
	/* background: hsl(217, 50%, 80%); */
	background: #ffc3c3;
}

.schedule .event.orange .event-box {
	/* border-left: 3px solid hsl(217, 50%, 80%); */
	border-left: 3px solid #ffa700;
}
.event-categorytag.orange,
ul.skjl-cats .orange input[type=checkbox] + label::before {
	/* background: hsl(217, 50%, 80%); */
	background: #ffa700;
}

/* <<< */

/*
vim: foldmethod=marker
*/
