body {
	font-family: "Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: #F4F6F9;
}

.climb__content {
	overflow: auto;
	height: 100vh;
}

.climb__header {
	position: sticky;
	left: 0;
	width: 100%;
}

.climb__header h1 {
	margin-top: 0.5rem;
	text-align: center;
	font-size: 1.4rem;
}

.climb__not-found-header {
	text-align: center;
	margin: 2rem;
	font-size: 1.8rem;
}

.climb__top-panel {
	padding: 0.3rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #343a40;
	color: #c2c7d0;
	box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)!important;
	height: 3.3rem;
}

.climb__logo {
	font-size: 2.2rem;
	font-weight: bold;
	color: #c2c7d0;
}

.climb__logo b {
	color: #007bff;
}

.climb__top-panel__links {
	text-align: right;
	display: flex;
	gap: 0.5rem;
}

.climb__top-panel__links a {
	text-decoration: none;
	color: #c2c7d0;
	font-size: 1.2rem;
	padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    white-space: nowrap;
}
.climb__top-panel__links a:hover {
	background-color: #494E54;
	color: #FFF;
}

.climb__top-panel__links a.current {
	background-color: #007BFF;
	color: #FFF;	
}
.climb__top-panel__links a.current:hover {
	background-color: #007BFF;
}

.climb__top-panel__show-links {
	color: #c2c7d0;
	font-size: 1.2rem;
	cursor: pointer;
	display: none;
}
.climb__overlay {
	display: none;
}

.climb__content-panel__wrapper {
	width: 100%;
	box-sizing: border-box;
	padding: 0.5rem;
	text-align: center;
}

.climb__content-panel {
	background-color: #fff;
	background-clip: border-box;
	border: 0 solid rgba(0,0,0,.125);
	//border-top: 3px solid #007bff;
	border-radius: 0.25rem;
	box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
	padding: 0.8125rem 1.5rem;
	margin: 0;
	display: inline-block;
	min-width: 70%;
	box-sizing: border-box;
	text-align: left;
}

@media screen and (max-width: 1024px) {
	.climb__logo {
		z-index: 90002;
	}
	.climb__top-panel__links {
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		float: none;
		overflow-y: auto;
		
		padding-top: 4rem;
		gap: 0;
		background: #343a40;
		flex-direction: column;
		z-index: 90001;
		
		width: 0;
		transition: width .3s ease-in-out;
	}
	.climb__top-panel__links a {
		margin: 0.2rem 0.5rem;
		text-align: left;
	}
	.climb__top-panel__show-links {
		display: block;
		z-index: 90001;
	}
	.climb__overlay {
		position: fixed;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    background: rgba(0,0,0,0.7);
	    z-index: 90000;
	    opacity: 1;
	    -webkit-transition: opacity 400ms ease-in;
	    -moz-transition: opacity 400ms ease-in;
	    transition: opacity 400ms ease-in;
	    display: none;
	}
	
	.climb__content.sidebar-visible .climb__overlay {
		display: block;
	}
	.climb__content.sidebar-visible .climb__top-panel__links {
		width: 230px;
	}
	
	.climb__content-panel {
		min-width: 100%;
	}
}








.climb__registration-form__field-required {
	display: inline-block;
	margin-left: -12px;
	color: #ea0805;
}
.climb__registration-form__field-title {
	margin-top: 5px;
	margin-bottom: 5px;
}
.climb__registration-form__field {
	margin-bottom: 10px;
}
.climb__registration-form__field input, .climb__registration-form__field select {
	width: 70%;
	padding: 10px 20px;
	border: 1px solid #AAA;
	border-radius: 5px;
	box-sizing: content-box;
}
.climb__registration-form__field .beeJS__btn {
	margin-top: 20px;
}
.climb__registration-form__error {
	color: #dc3545;
}

table.climb__persons-table {
	font-size: 14px;
	width: 100%;
}
table.climb__persons-table th {
	font-weight: bold;
	padding: 10px;
	border-bottom: 1px dotted #AAA;
}
table.climb__persons-table td {
	padding: 10px;
	border-bottom: 1px dotted #AAA;
}


.climb__enter-results-panel {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-top: 20px;
}

.climb__enter-results-panel h2 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 1.3rem;
}
.climb__enter-results-panel .beeJS__btn {
	margin-top: 20px;
}

.climb__enter-results-panel label {
	display: flex;
	cursor: pointer;
}
.climb__enter-results-panel label span {
	flex-grow: 1;
	padding: 10px;
	text-align: center;
	border: 1px solid #DDD;
}
.climb__enter-results-panel input:checked + span { 
	background-color: #5282FF;
	border-color: #5282FF;
	color: #FFF;
}
.climb__enter-results-panel input:disabled:checked + span { 
	background-color: #AAA;
	color: #FFF;
}
.climb__enter-results-panel input:disabled + span { 
	background-color: #DDD;
	color: #FFF;
}

.climb__enter-results-panel input[type="radio"] {
	display: none;
}

.climb__enter-results-panel__row {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.climb__enter-results-panel__row > * {
	flex-grow: 1;
}
.climb__enter-results-panel__route-name {
	font-weight: bold;
	width: 100px;
	flex-grow: 0;
}