#swal2-select {
	width: auto;
}
#swal2-select option:disabled {
	color: #AAA;
}

#sln-custom {
	position: relative;
}
#sln-custom.loading::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url('./images/loading.gif') no-repeat center 200px;
    background-color: rgb(255, 255, 255, 0.5);
    z-index: 10;
}

#slnc-schedule {
}
#slnc-schedule .header .title {
	padding: 10px;
	margin-bottom: 10px;
	background-color: #EEE;
	font-size: 17px;
	font-weight: bold;
}
#slnc-schedule .header .date {
	padding: 10px;
	margin-bottom: 10px;
	background-color: #FFF;
	font-size: 17px;
	border: 1px solid #CCC;
	border-radius: 4px;
	width: 200px;
}
#slnc-schedule .nav {
	display: flex;
	justify-content: flex-end;
	gap: 5px;
	margin-bottom: 10px;
}
#slnc-schedule .nav > button {
	background-color: #000;
	color: #FFF;
	border: 0;
	border-radius: 4px;
	padding: 10px 15px;
	cursor: pointer;
}
#slnc-schedule .nav > button:hover {
	opacity: 0.8;
}
#slnc-schedule .nav > button:disabled {
	opacity: 0.25;
	cursor: auto;
}

#slnc-schedule .timeline {
	position: relative;
	overflow-x: scroll;
	min-width: 100%;
	width: 0px;
}
#slnc-schedule .timeline > table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: auto;
}
#slnc-schedule .timeline > table tr > th {
	position: static;
	padding: 5px 7.5px;
	border: 1px solid #CCC;
	font-size: 18px;
	color: #333;
	white-space: nowrap;
	background-color: #EEE;
	font-weight: normal;
	text-align: center;
}
#slnc-schedule .timeline > table tr > td {
	position: static;
	padding: 5px 7.5px;
	border: 1px solid #CCC;
	background-color: #FFF;
	font-size: 18px;
	color: #333;
	white-space: nowrap;
	text-align: center;
}
#slnc-schedule .timeline > table tr > td.status-open {
	cursor: pointer;
}
#slnc-schedule .timeline > table tr > td.status-open:hover {
	background-color: #FFD43B;
	color: #333;
}
#slnc-schedule .timeline > table tr > td.status-closed {
	background-color: #EFEFEF;
}
#slnc-schedule .timeline > table tr > .heading {
	left: 1px;
	position: sticky;
	padding: 0;
	z-index: 1;
}
#slnc-schedule .timeline > table tr > .heading > .inner {
	width: auto;
	margin: -1px;
	padding: 5px 7.5px;
	border: 1px solid #CCC;
	box-shadow: 1px 0px 3px 0 rgb(0 0 0 / 0.1), 1px 0px 2px -1px rgb(0 0 0 / 0.1);
}
#slnc-schedule .timeline > table tr > .heading.attendant > .inner {
	background-color: #FFF;
}

#slnc-form {
	display: flex;
	justify-content: center;
}
#slnc-form > form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 640px;
}
#slnc-form .field-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
#slnc-form .field-group .input-group {
	display: flex;
	gap: 10px;
}
#slnc-form .field-group label {
	font-size: 90%;
	font-weight: bold;
}
#slnc-form .field-group input {
	width: 100%;
	border: 1px solid #666;
	border-radius: 3px;
	padding: .5rem 1rem;
	transition: all .3s;
}
#slnc-form .field-group .sub-field {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 50%;
}
#slnc-form .field-group .sub-field label {
	font-size: 80%;
	font-weight: normal;
}
#slnc-form p.error {
	color: #CC0000;
	font-size: 80%;
}
#slnc-form .submit {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin: 10px 0 20px;
}
#slnc-form .submit > button {
	padding: 10px 40px;
	background-color: #B72E5C;
	border-radius: 3px;
	color: #FFF;
	cursor: pointer;
}
#slnc-form .submit > button.cancel {
	background-color: #FFF;
	color: #B72E5C;
}

#slnc-thanks p {
	text-align: center;
	margin-bottom: 10px;
}
