#onboard {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	margin: 0;
	border-radius: 0;
	height: 100vh;
	width: 100%;
	overflow-y: scroll;
	padding: 24px 24px 107px;
}
#onboard .logo {
	display: none;
}
#onboard > .step {
	display: none;
}
#onboard .bottom-nav {
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: auto; right: 0; bottom: 0; left: 0;
	height: 107px;
	padding: 24px 24px 34px;
	background: #FFF;
}
#onboard .bottom-nav button {
	justify-content: center;
	flex: 0 0 calc(50% - 8px);
	margin: 0;
	text-align: center;
}
#onboard .bottom-nav button.out {
	border-color: transparent;
	border: none;
	color: #046CC3;
	font-weight: var(--fw700);
}
#onboard .bottom-nav button.out:active {
	color: #FFF;
}
#onboard button {
	justify-content: center;
	height: 48px;
	width: 100%;
	padding: 10px 24px;
	font-size: 16px;
	font-weight: var(--fw700);
	text-align: center;
}
#onboard button.out {
	display: flex;
	margin: 0 auto;
	border: none;
	width: auto;
	font-weight: var(--fw500);
}
#onboard .bottom-nav button {
	margin: 0;
}
#onboard .bottom-nav button.save {
	margin-left: auto;
}
#onboard .title {
	margin-bottom: 36px;
	color: #17335E;
	font-size: 24px;
	font-weight: var(--fw600);
	line-height: normal;
	letter-spacing: 0.48px;
	text-align: center;
}
#onboard .progress {
	position: relative;
	margin-bottom: 36px;
	border-radius: 4px;
	height: 8px;
	width: 100%;
	background: rgba(4, 108, 195, 0.20);
}
#onboard .progress:before {
	content: '';
	position: absolute;
	top: 0; right: auto; bottom: 0; left: 0;
	border-radius: 4px;
	height: 100%;
	width: 0;
	background: rgb(4, 108, 195);
}
#onboard .progress.p33:before {
	width: 33%;
}
#onboard .progress.p66:before {
	width: 66%;
}
#onboard .progress.p25:before {
	width: 25%;
}
#onboard .progress.p50:before {
	width: 50%;
}
#onboard .progress.p75:before {
	width: 75%;
}

#onboard .list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}
#onboard .list:empty {
	margin-bottom: 0;
}
#onboard .list .location,
#onboard .list .room {
	display: flex;
	align-items: center;
	height: 56px;
	width: 100%;
	max-width: none;
}
#onboard .list .location .name,
#onboard .list .room .name {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 10px;
	width: calc(100% - 48px);
	padding: 16px;
	color: #193766;
	font-size: 16px;
	font-weight: var(--fw500);
	line-height: 24px;
	letter-spacing: -0.32px;
	background: rgba(0, 196, 255, 0.10);
}
#onboard .list .room .name {
	border: 1px solid var(--blue);
}
#onboard .list .room[data-color="yellow"] .name {
	border: 1px solid var(--yellow);
}
#onboard .list .room[data-color="green"] .name {
	border: 1px solid var(--green);
}
#onboard .list .room[data-color="violet"] .name {
	border: 1px solid var(--violet);
}
#onboard .list .room[data-color="orange"] .name {
	border: 1px solid var(--orange);
}
#onboard .list .room[data-color="red"] .name {
	border: 1px solid var(--red);
}
#onboard .list .location .edit,
#onboard .list .room .edit {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: 21px;
	letter-spacing: -0.28px;
}
#onboard .list .location .edit i,
#onboard .list .room .edit i {
	display: inline-block;
	margin-left: 4px;
	height: 21px;
	width: 21px;
	background: url(../img/ico-edit.svg) center center no-repeat;
}
#onboard .delete {
	display: inline-block;
	margin-left: 24px;
	height: 20px;
	width: 20px;
	background: url(../img/ico-delete-sm.svg) center center no-repeat;
	vertical-align: middle;
	cursor: pointer;
}
#onboard .step .form-group {
	display: flex;
	flex-wrap: wrap;
}
#onboard .step .form-group .day {
	flex: 1 1 auto;
	max-width: 235px;
	min-width: 90px;
	color: #17335E;
	font-size: 20px;
	font-weight: var(--fw500);
	line-height: 30px;
	letter-spacing: -0.4px;
}
#onboard .step .form-group .slots-wrapper {
	display: flex;
	flex-direction: column;
	flex: 1 0 calc(100% - 235px);
	max-width: 480px;
}
#onboard .step .form-group .slots {
	display: flex;
	flex-direction: column;	
	gap: 16px;
	border-radius: 10px;
	padding: 16px;
	background: rgba(0, 196, 255, 0.10);
}
#onboard .step .form-group .slots .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #17335E;
	text-align: center;
	font-size: 16px;
	font-weight: var(--fw500);
	line-height: 24px;
	letter-spacing: -0.32px;
}
#onboard .step .form-group .slots .add-slot {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: 21px;
	letter-spacing: -0.28px;
}
#onboard .step .form-group .slots .add-slot img {
	margin-left: 4px;
}
#onboard .step .form-group .slots .slot {
	display: flex;
	align-items: center;
	border-radius: 5px;
	padding: 6px 12px;
	color: #193766;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: 21px;
	letter-spacing: -0.28px;
	background: rgba(4, 108, 195, 0.20);
	cursor: pointer;
}
#onboard .step .form-group .slots .slot .loc {
	display: block;
	margin-right: 12px;
	height: 24px;
	width: 24px;
	background: url(../img/blu-loc-fitness-center.svg) center center no-repeat;
}
#onboard .step .form-group .slots .slot .loc.home {
	background-image: url(../img/blu-loc-home.svg);
}
#onboard .step .form-group .slots .slot .loc.online {
	background-image: url(../img/blu-loc-online.svg);
}
#onboard .step .form-group .slots .slot .length {
	margin-left: auto;
	font-weight: var(--fw300);
}
#onboard .step .form-group .slots p {
	margin-bottom: 0;
	color: #90A3BF;
	font-size: 14px;
	font-weight: var(--fw400);
	line-height: 21px;
	letter-spacing: -0.28px;
	text-align: center;
}
#onboard .step .form-group .slots-wrapper .copy-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 24px auto 0;
	color: #193766;
	font-size: 14px;
	font-weight: var(--fw500);
	line-height: 21px;
	letter-spacing: -0.28px;
}
#onboard .step .form-group .slots-wrapper .copy-slot img {
	margin-left: 8px;
}
#onboard-invite .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
#onboard-invite .content img {
	width: 100%;
	max-width: 192px;
}
#onboard-invite input.join-link {
	flex: 1 1 auto;
	border: 1px solid #E8E8E8;
	width: 100%;
	padding: 12px 48px 12px 24px;
	color: #193766;
	background: url(../img/ico-link.svg) calc(100% - 24px) center no-repeat;
}
#onboard-invite .content a {
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.32px;
}
#onboard-invite .content a.copy-link {
	background: url(../img/ico-copy-blu.svg) right center no-repeat;
}
#onboard-invite .content a.share-link {
	display: none;
	background: url(../img/ico-share-blu.svg) right center no-repeat;
}
.app #onboard-invite .content a.share-link {
	display: block;
}
#onboard-invite button.save {
	margin: 0 auto;
	flex-basis: 100%;
	width: 100%;
	max-width: 400px;
}
#onboard-modal-add-location .modal-dialog,
#onboard-modal-add-room .modal-dialog {
	padding: 24px;
}
#onboard-modal-add-location .modal-header,
#onboard-modal-add-room .modal-header {
	height: 56px;
	min-height: 56px;
}
#onboard-modal-add-location .form .actions,
#onboard-modal-add-room .form .actions {
	display: flex;
	justify-content: flex-end;
}
#onboard-modal-add-location .form button,
#onboard-modal-add-room .form button {
	margin: 0 0 0 16px;
	height: 48px;
	font-size: 16px;
	font-weight: var(--fw700);
}
#onboard-modal-add-location .form button.out,
#onboard-modal-add-room .form button.out {
	border-color: transparent;
	color: #046CC3;
}
#onboard-modal-add-location .form button.out:active,
#onboard-modal-add-room .form button.out:active {
	color: #FFF;
}
#onboard-modal-add-room .colors {
	display: flex;
	gap: 11px;
	padding: 0 3px;
}
#onboard-modal-add-room .colors a {
	display: block;
	border-radius: 18px;
	width: 36px;
	height: 36px;
	background-color: var(--blue);
	cursor: pointer;
}
#onboard-modal-add-room .colors a.active {
	outline: 1px solid #046CC3;
	outline-offset: 2px;
}
#onboard-modal-add-room .colors a.yellow {
	background-color: var(--yellow);
}
#onboard-modal-add-room .colors a.green {
	background-color: var(--green);
}
#onboard-modal-add-room .colors a.violet {
	background-color: var(--violet);
}
#onboard-modal-add-room .colors a.orange {
	background-color: var(--orange);
}
#onboard-modal-add-room .colors a.red {
	background-color: var(--red);
}
#onboard-modal-slot .modal-dialog {
	padding: 24px;
}
#onboard-modal-slot .modal-header {
	margin-bottom: 24px;
	height: 25px;
	min-height: 25px;
	line-height: 25px;
}
#onboard-modal-slot .modal-header.edit {
	justify-content: space-between;
}
#onboard-modal-slot .form .form-group.full-w.time {
	padding-left: 42px;
	background: url(../img/blu-time-circle.svg) left center no-repeat;
}
#onboard-modal-slot .form .form-group.full-w.length {
	padding-left: 42px;
	background: url(../img/ico-length.svg) left center no-repeat;
}
#onboard-modal-slot .form .form-group.full-w.location {
	padding-left: 42px;
	background: url(../img/blu-pin.svg) left center no-repeat;
}
#onboard-modal-slot .form input[type=time] {
	width: auto
}
#onboard select {
	height: 48px;
	font-size: 14px;
	font-weight: var(--fw300);
	line-height: 21px;
	letter-spacing: -0.28px;
}
#onboard-modal-slot .form select {
	width: 244px;
	max-width: 100%;
}
#onboard-modal-slot .form input[type="time"]::-webkit-calendar-picker-indicator {
	display: none;
}
#onboard-modal-slot .form .actions {
	display: flex;
	justify-content: flex-end;
}
#onboard-modal-slot .form button {
	margin: 0 0 0 16px;
	height: 48px;
	font-size: 16px;
	font-weight: var(--fw700);
}
#onboard-modal-slot .form button.out {
	border-color: transparent;
	color: #046CC3;
	font-weight: var(--fw700);
}
#onboard-modal-slot .form button.out:active {
	color: #FFF;
}
#onboard-modal-copy-slot .form {
	flex-direction: column;
	gap: 16px;
}
#onboard-modal-copy-slot .form label {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	line-height: 24px;
	cursor: pointer;
}
#onboard-modal-copy-slot .modal-footer a.unconfirmed {
	opacity: .2;
	cursor: default;
}
#onboard input[type=time] {
	width: 120px;
	padding-right: 16px;
	font-size: 14px;
	font-weight: var(--fw300);
	line-height: 21px;
	letter-spacing: -0.28px;
}
#onboard-modal-slot .form input[type=time] {
	width: auto;
}
#onboard-calendar .form {
	display: block;
}
#onboard-calendar .form label {
	display: flex;
	align-items: center;
}



/* Mobile
-------------------------------------------------- */

@media only screen and (max-width: 1024px) {
	
	#onboard .form select {
		height: 48px;
		width: 100%;
	}
	#onboard .step .form-group {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	#onboard .step .form-group .day {
		max-width: none;
		min-width: auto;
		padding-bottom: 16px;
	}
	#onboard .list {
		margin-bottom: 16px;
	}
	#onboard .modal .form .actions {
		justify-content: space-between;
	}
	#onboard .modal .form .actions button {
		flex: 0 0 calc(50% - 8px);
		margin: 0;
	}
	#onboard-settings .modal .form .actions {
		justify-content: space-between;
	}
	#onboard-settings .modal .form .actions button {
		flex: 0 0 calc(50% - 8px);
		margin: 0;
	}
	
}



/* Desktop
-------------------------------------------------- */

@media only screen and (min-width: 1025px) {
	
	#onboard {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 24px;
		background: #FFF url(../img/curved-bg.svg) center 300px no-repeat;
		background-size: cover;
	}
	#onboard .logo {
		display: block;
		position: absolute;
		top: 36px;
		left: 36px;
		z-index: 1000;
	}
	#onboard > .step {
		border-radius: 30px;
		margin: auto;
		width: 600px;
		padding: 24px;
		background: #FFF;
		box-shadow: 0px 0px 98.7px 3px rgba(0, 194, 255, 0.17);
	}
	#onboard .progress {
		display: none;
	}
	#onboard .bottom-nav {
		position: relative;
		height: auto;
		padding: 24px 0 0 0;
	}
	#onboard #onboard-calendar {
		width: 800px;
	}
	#onboard #onboard-invite {
		width: 495px;
	}
	#onboard-invite .content
		margin-bottom: 24px;
	}
	
}