.buttonSyncData {
	background: #adadad;
	float: right;
}

.toolbar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: white;
	display: flex;
	z-index: 9999;
}

.toolbar .field {
	border: 1px solid #f3f3f4;
	padding: 5px;
	margin-right: 16px;
}
.toolbar .field label {
	font-weight: 600;
	font-size: 12px;
	display: block;
}

.home {
	display: grid;
	grid-template-columns: 300px auto;
}

.home > div {
	overflow: auto;
	height: 100vh;
	padding-bottom: 100px;
}
.home > div > * {
	zoom: 0.35;
}

.aside {
	width: 300px;
	background-color: white;
	height: 100%;
	max-height: 100vh;
	left: 0;
	top: 0;
	overflow: auto;
	padding-bottom: 100px;
}

.filters {
	border-bottom: 2px solid #0d2144;
	/* display: grid;
	grid-template-columns: 75% 25%; */
}

.filters input,
.filters select {
	width: 100%;
	height: 40px;
	outline: none;
}

.filters input {
	padding: 0 16px;
}

.aside header {
	background: white;
	width: 100%;
	position: sticky;
}

.stop {
	display: block;
	padding: 8px 8px;
	width: 100%;
	text-align: left;
	border-bottom: 1px solid #f3f3f3;
	outline: none !important;
}

.stop:hover,
.stop_current {
	background: #f3f3f3;
}

.stopId {
	color: gray;
	font-size: 11px;
}
.stop b,
.stop > span {
	display: block;
	font-weight: 400;
}

.connections ul {
	display: flex;
}

.connections ul li {
	margin-right: 4px;
	zoom: 0.8;
}

.toolbar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: white;
	padding: 16px 0;
	border-top: 1px solid #000000;
}

.toolbar .buttons {
	width: 100%;
}

.buttonSyncData {
	float: right;
	margin-right: 16px;
}

.toolbar p {
	float: right;
}
.toolbar button {
	color: white;
	padding: 8px 16px;
	margin-left: 16px;
	border-radius: 99px;
	font-weight: 600;
}

.toolbar button.buttonCurrentStop {
	background: #1f3150;
}
.toolbar button.loading {
	background: red;
}

html {
	/* see https://github.com/puppeteer/puppeteer/issues/2685 */
	-webkit-print-color-adjust: exact;
}

body {
	font-family: 'FS Millibank';
	background-color: whitesmoke;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* <Header /> */
.Header__header {
	grid-row-start: 1;
	grid-row-end: 2;
	grid-column-start: 1;
	grid-column-end: -1;
	width: 100%;
	background: #0d2144;
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 140px;
	padding: 0 152px;
	height: 340px;
	font-weight: 600;
	font-family: 'FS Millibank Negative';
}

.logo {
	width: 144px;
	transform: translateY(32px);
}

.Header__header > span {
	display: block;
	transform: translateY(32px);
}

/* <Print /> */

.Print__container {
	margin: 0 auto;
	display: grid;
	background-color: #ffffff;
	grid-template-rows: 340px auto;
	grid-row: 2 / span 1;
	page-break-after: always;
	position: relative;
}

.Print__container:not(.Print__exporting):before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 76px solid red;
	opacity: 0.6;
	z-index: 9999;
	pointer-events: none;
	border-bottom-width: 95px;
}

.Print__container > div:nth-child(odd) {
	background: #f3f3f4;
}

.Print__printSize1 {
	width: 1060mm;
	height: 867mm;
}

.Print__printSize2 {
	width: 1010mm;
	height: 1110mm;
}

.Print__printSize3 {
	width: 920mm;
	height: 615mm;
}
/* 
.Print__printSize3 .BusLane {
	zoom: 0.6;
} */

.Print__oneLane {
	grid-template-columns: 25% 75%;
}

.Print__twoLane {
	grid-template-columns: 25% 25% 50%;
}

.Print__threeLane {
	grid-template-columns: repeat(auto-fill, 25%);
}

.Print__fourLane {
	grid-template-columns: repeat(auto-fill, 25%);
}
.Print__fiveLane {
	grid-template-columns: repeat(5, 1fr);
}

.Print__fiveLane .BusLane {
	/* zoom: 0.9; */
	padding: 0 20px;
}
.Print__sixLane {
	grid-template-columns: repeat(6, 1fr);
}

.Print__sixLane .BusLane {
	zoom: 0.9;
	padding: 0 20px;
}

/* <BusLane /> */

.BusLane {
	display: grid;
	padding: 0 50px;
	grid-template-rows: repeat(auto-fill, 28px);
	position: relative;
}

.BusLane > header {
	grid-template-columns: 250px 102px auto;
	grid-row: span 8;
	display: grid;
	margin-top: 56px;
	align-items: center;
}

.BusLane.BusLane__subheadingspace > header {
	grid-row: span 5;
}

.BusLane__subheader {
	grid-template-columns: 250px 102px auto;
	grid-row: span 3;
	display: grid;
}

.BusLane__subheader > span {
	grid-column-start: 3;
	font-size: 30px;
	font-weight: 100;
	line-height: 1.1;
	display: block;
	margin-top: 5px;
}

.BusLane > header.withAlert {
	grid-template-columns: 250px 102px min-content auto;
}

.BusLane__alert {
	padding-left: 35px;
	width: 88px;
	margin-top: -8px;
}

.BusLane header > span:first-child {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}

.BusLane > header > span:not(first-child) {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 54px;
	transform: translateY(-5px);
}

.BusLane > header p {
	/* display: flex;
	align-items: center; */
	font-size: 54px;
	line-height: 1.1;
	white-space: nowrap;
}

/* <BusStop /> */

.BusLane .stop {
	grid-template-columns: 250px 50px auto;
	grid-row: span 2;
	display: grid;
}

.busContainer__lane .stop > div:nth-child(1) {
	grid-column: 1 / span 1;
}

.busContainer__lane .stop .line {
	grid-column: 2 / span 1;
	display: flex;
	align-items: center;
}

.busContainer__lane .stop .line span {
	background-color: #df4736;
	display: block;
	width: 10px;
	height: 100%;
	margin-left: 15px;
}

.busContainer__lane .stop .line .whiteDot {
	background-color: blue;
	display: block;
	width: 10px;
	height: 100%;
}

.busContainer__lane .stop .line svg {
	color: #df4736;
	width: 12px;
}
.busContainer__lane .stop .connection {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

.busContainer__lane .stop .connection ul {
	display: flex;
	flex-wrap: wrap;
	width: 210px;
	flex-direction: row-reverse;
}
.busContainer__lane .stop .connection ul li {
	width: 30px;
	font-size: 10px;
	line-height: 20px;
	text-align: center;
	color: white;
	height: 20px;
	background-color: gray;
	border-radius: 200px;
}

.busContainer__lane .stop > div:nth-child(3) {
	grid-column: 3 / span 1;
	display: flex;
	align-items: center;
	font-size: 18px;
	color: #0d2144;
}

.BusStop {
	grid-template-columns: 250px 102px auto;
	grid-row: span 2;
	display: grid;
	cursor: pointer;
}
.BusStop.BusStopMini {
	grid-template-columns: 102px auto;
	grid-row: span 2;
	display: grid;
	cursor: pointer;
}

.BusStop__current {
	grid-template-columns: 250px 100px auto;
	grid-row: span 4;
	display: grid;
}

.BusStop__current > div:nth-child(3) {
	grid-column: 3 / span 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.BusStop__current_title {
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 54px;
	color: #101a2d;
	font-weight: 600;
	white-space: nowrap;
}

.BusStop > div:nth-child(1) {
	grid-column: 1 / span 1;
}

.BusStop__time {
	font-weight: 500;
	color: #8393a0;
	font-size: 26px;
	display: inline-block;
	margin-left: 10px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.BusStop__line {
	grid-column: 2 / span 1;
	display: flex;
	align-items: center;
	position: relative;
	height: 100%;
}

.BusStop__comment {
	transform: translateY(2px);
	display: inline-block;
	margin-left: 18px;
}

.BusStop__passedStop .BusStop__comment {
	transform: translateY(5px);
	margin-left: 10px;
}

.BusStop__current_title .BusStop__comment {
	transform: translateY(-6px);
	margin-left: 15px;
}

.BusStop__whiteLine {
	background-color: white;
	width: 2px;
	height: 100%;
	display: block;
	position: absolute;
	top: 13px;
	left: 44px;
	z-index: 2;
}

.BusStop__whiteLine {
	left: 45.5px;
}

.BusStop__connections {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: row-reverse;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
}

.BusStop__connections .icon {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	display: flex;
	align-items: center;
}

.BusStop__connections > div {
	display: flex;
	flex-wrap: wrap;
	width: 230px;
	justify-content: flex-end;
}

.BusStop__connections .secList {
	margin-top: -4px;
}

.BusStop > div:nth-child(3) {
	/* grid-column: 3 / span 1; */
	display: flex;
	align-items: center;
	font-size: 30px;
	color: #0d2144;
	justify-content: space-between;
}

.BusStop__passedStop {
	font-size: 22px;
	color: #8091a1;
}
.BusStop__collapse {
	color: #8091a1;
	font-weight: 100;
}

/*   <BusNumber />    */
.BusNumber__smallNum {
	width: 26px;
	font-size: 12px;
	text-align: center;
	font-weight: 600;
	height: 21px;
	border-radius: 200px;
}

.BusNumber__outTownSmall {
	background-color: white;
	color: black;
	line-height: 18px;
	border-width: 3px;
}

.BusNumber__inTownSmall {
	color: white;
	line-height: 23px;
}

.BusNumber__largeNum {
	width: 140px;
	font-size: 54px;
	font-weight: 600;
	text-align: center;
	height: 70px;
	border-radius: 200px;
}

.BusNumber__inTownLarge {
	line-height: 73px;
	color: white;
}

.BusNumber__outTownLarge {
	/* line-height: 58px; */
	color: black;
	background-color: white;
	/* border-width: 8px; */
}

.BusNumber__infoNum {
	width: 40px;
	font-size: 16px;
	text-align: center;
	height: 21px;
	border-radius: 200px;
	font-weight: 600;
}

.BusNumber__infoBorder {
	color: black;
	border: 2px solid black;
	line-height: 20px;
}

.BusNumber__infoConnection {
	background-color: #000000;
	color: white;
	line-height: 24px;
	font-weight: 600;
}

/* <BusLaneInfo */

.BusLaneInfo {
	grid-template-columns: 50% auto;
	grid-row: span 2;
	display: grid;
	border-top: 14px solid black;
	align-items: center;
	position: absolute;
	right: 0;
	max-width: 1050px;
	width: 100%;
	bottom: 0;
	padding: 20px 20px 100px 50px;
	background: #f3f3f4;
}

.BusLaneInfo header {
	padding-left: 63px;
	grid-column: span 2;
	grid-row: span 2;
	display: grid;
	font-weight: bold;
	margin-bottom: 20px;
}

.BusLaneInfo header > span {
	font-style: italic;
}

.BusLaneInfo__grid {
	grid-template-columns: 40px auto;
	grid-row: span 2;
	column-gap: 20px;
	display: grid;
}

.BusLaneInfo__lane {
	grid-row-start: 3;
}

.BusLaneInfo__mapInfo {
	grid-row: span 7;
}

.BusLaneInfo__grid p {
	margin-bottom: 15px;
}
.BusLaneInfo__grid p:nth-child(2) {
	margin-bottom: 11px;
}
.BusLaneInfo__grid p:nth-child(3) {
	margin-bottom: 13px;
}
.BusLaneInfo__grid p:nth-child(4) {
	margin-bottom: 14px;
}
.BusLaneInfo__grid p:nth-child(5) {
	margin-bottom: 15px;
}

.BusLaneInfo__sign {
	display: flex;
	justify-content: center;
}

.BusLaneInfo__estimatedTime {
	font-weight: 600;
	font-size: 24px;
}

.BusLaneInfo__stop {
	white-space: nowrap;
	font-weight: 100;
}

.BusLaneInfo__stop > span {
	transform: translateY(-1.5px);
	display: inline-block;
	margin-right: 2px;
}

.BusLaneInfo__grid p span {
	font-style: italic;
}

/*      <Map />       */

.Map {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	top: 0;
	overflow: hidden;
}

.Map > svg {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	transform: scale(1.02);
}

.Map__dragabble {
	position: absolute;
	top: 0;
	left: 0;
	width: 10000px;
	height: 10000px;
	overflow: hidden;
	cursor: grab;
}
.Map__dragabble.react-draggable-dragging {
	cursor: grabbing;
}

.Map__dragabble iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*      INFO       */

.BusInfo {
	padding: 80px 110px;
	color: #222843;
}

.BusInfo__header {
	font-weight: 600;
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
}

.BusInfo__header span {
	font-style: italic;
}

.BusInfo:before {
	content: '';
	display: block;
	width: 100%;
	border-top: 4px solid #222843;
}

.BusInfo > div {
	grid-template-columns: 50px calc(50% - 25px) calc(50% - 25px);
	display: grid;
	margin: 0 -50px;
}

.BusInfo > div > div:nth-child(3) {
	padding: 0 50px 0 20px;
	font-style: italic;
}
.BusInfo > div > div:nth-child(1) {
	margin-top: 2px;
	display: inline-block;
}

.Lane {
	display: flex;
	align-items: center;
	position: relative;
	height: 100%;
}

.Lane__main {
	display: block;
	height: 100%;
}

.Lane__notPassed .Lane__main {
	width: 19.5px;
}

.Lane__passed .Lane__main {
	width: 31px;
}

.Lane__terminal svg:first-of-type {
	transform: rotate(180deg);
}

.Lane__terminal.Lane__notPassed svg:first-of-type {
	margin-left: 24px;
}
.Lane__terminal.Lane__passed svg:first-of-type {
	margin-left: 17px;
}

.Lane__notPassed .Lane__withMargin {
	margin-left: 36px;
}

.Lane__passed .Lane__withMargin {
	margin-left: 31px;
}

.Lane__whitedot {
	background-color: white;
	border-radius: 999px;
	display: block;
	z-index: 10;
	position: absolute;
}

.Lane__notPassed .Lane__whitedot {
	width: 15px;
	height: 15px;
	left: 38.5px;
}

.Lane__passed .Lane__whitedot {
	width: 19px;
	height: 19px;
	left: 37px;
}

.lane .laneStop {
	width: 12px;
}

.Lane__notPassed svg {
	width: 12px;
}

.Lane__passed svg {
	width: 14px;
}

.Lane__start svg {
	width: 44px;
	position: absolute;
	margin-left: 24px;
	z-index: 10;
}

.Lane__start span:first-of-type {
	width: 19.5px;
	height: 50%;
	margin-left: 36px;
	display: block;
	margin-top: 49px;
}

.Lane__start .Lane__whitedot {
	top: 16px;
}

.Lane__end span:first-of-type {
	width: 31px;
	height: 50%;
	margin-left: 31px;
	display: block;
	margin-bottom: 28px;
}

/* .Lane__end svg {
	width: 52px;
	position: absolute;
	margin-left: 23px;
	z-index: 10;
} */

.Lane__end svg {
	width: 59px;
	position: absolute;
	margin-left: 18px;
	z-index: 10;
	margin-top: -4px;
}

.Lane__end .Lane__whitedot {
	top: 18px;
	margin-left: 0;
}

.Lane__current {
	position: relative;
	height: 100%;
}

.Lane__current svg {
	width: 64px;
	top: 23px;
	position: absolute;
	margin-left: 13px;
	z-index: 5;
}

.Lane__current span:first-of-type {
	width: 19.5px;
	height: 50%;
	margin-left: 36px;
	display: block;
}
.Lane__current span:nth-of-type(2) {
	width: 31px;
	height: 50%;
	margin-left: 31px;
	display: block;
}

.alert {
	display: inline-block;
}

.bg-lane-1 {
	background-color: #d32600;
}

.bg-lane-2 {
	background-color: #9aa51a;
	color: black;
}

.bg-lane-3 {
	background-color: #e8b42e;
	color: black;
}

.bg-lane-4 {
	background-color: #1b6a3c;
}

.bg-lane-5 {
	background-color: #ca2958;
}

.bg-lane-6 {
	background-color: #0a9d0a;
}

.bg-lane-7 {
	background-color: #cb4138;
}

.bg-lane-8 {
	background-color: #11b09b;
}

.bg-lane-11 {
	background-color: #c53089;
}

.bg-lane-12 {
	background-color: #1f609a;
}

.bg-lane-13 {
	background-color: #088fa4;
}

.bg-lane-14 {
	background-color: #744f98;
}

.bg-lane-15 {
	background-color: #215266;
}

.bg-lane-16 {
	color: black;
	background-color: #baa330;
}

.bg-lane-17 {
	background-color: #564c27;
}

.bg-lane-18 {
	background-color: #db654f;
}

.bg-lane-21 {
	background-color: #e0b33c;
	color: black;
}

.bg-lane-22 {
	background-color: #22a176;
}

.bg-lane-23 {
	background-color: #2a245c;
}

.bg-lane-24 {
	background-color: #28536a;
}

.bg-lane-25 {
	background-color: #2491d3;
}

.bg-lane-26 {
	background-color: #0a68b3;
}

.bg-lane-27 {
	background-color: #69ba9b;
}

.bg-lane-28 {
	background-color: #bd107d;
}

.bg-lane-29 {
	background-color: #494845;
}

.bg-lane-31 {
	background-color: #725761;
}

.bg-lane-33 {
	background-color: #cc8d3d;
}

.bg-lane-34 {
	background-color: #98c568;
}

.bg-lane-35 {
	background-color: #206574;
}

.bg-lane-36 {
	background-color: #f18b28;
}

.bg-lane-43 {
	background-color: #847b5a;
}

.bg-lane-44 {
	background-color: #2d2c7e;
}

.bg-lane-51 {
	background-color: #bd107d;
	color: black;
}

.bg-lane-52 {
	background-color: #4578ac;
	color: black;
}

.bg-lane-55 {
	color: black;
	background-color: #4578ac;
}

.bg-lane-56 {
	background-color: #2f2b7f;
	color: black;
}
.bg-lane-57 {
	color: black;
	background-color: #e53c2e;
}
.bg-lane-58 {
	color: black;
	background-color: #68bb95;
}
.bg-lane-59 {
	color: black;
	background-color: #295468;
}
.bg-lane-71 {
	color: black;
	background-color: #2d6d46;
}
.bg-lane-72 {
	color: black;
	background-color: #b3c338;
}
.bg-lane-73 {
	color: black;
	background-color: #eb654b;
}
.bg-lane-75 {
	color: black;
	background-color: #575454;
}
.bg-lane-78 {
	color: black;
	background-color: #18a7bc;
}
.bg-lane-79 {
	color: black;
	background-color: #f08728;
}

.bg-lane-81 {
	color: black;
	background-color: #827b55;
}

.bg-lane-82 {
	color: black;
	background-color: #de4c84;
}
.bg-lane-83 {
	color: black;
	background-color: #ddc030;
}

.bg-lane-87 {
	background-color: #fbbd2b;
}

.bg-lane-88 {
	background-color: #d60e51;
}

.bg-lane-89 {
	background-color: #199d48;
}

.bg-lane-101 {
	background-color: #cac6c6;
}
.bg-lane-102 {
	background-color: #cac6c6;
}
.bg-lane-103 {
	background-color: #cac6c6;
}
.bg-lane-105 {
	background-color: #cac6c6;
}
.bg-lane-106 {
	background-color: #cac6c6;
}

.text-lane-1 {
	color: #d32600;
}

.text-lane-2 {
	color: #9aa51a;
}

.text-lane-3 {
	color: #e8b42e;
}

.text-lane-4 {
	color: #1b6a3c;
}

.text-lane-5 {
	color: #ca2958;
}

.text-lane-6 {
	color: #0a9d0a;
}

.text-lane-7 {
	color: #cb4138;
}

.text-lane-8 {
	color: #11b09b;
}

.text-lane-11 {
	color: #c53089;
}

.text-lane-12 {
	color: #1f609a;
}

.text-lane-13 {
	color: #088fa4;
}

.text-lane-14 {
	color: #744f98;
}

.text-lane-15 {
	color: #215266;
}

.text-lane-16 {
	color: #baa330;
}

.text-lane-17 {
	color: #564c27;
}

.text-lane-18 {
	color: #db654f;
}

.text-lane-21 {
	color: #e0b33c;
}

.text-lane-22 {
	color: #22a176;
}

.text-lane-23 {
	color: #2a245c;
}

.text-lane-24 {
	color: #28536a;
}

.text-lane-25 {
	color: #2491d3;
}

.text-lane-26 {
	color: #0a68b3;
}

.text-lane-27 {
	color: #69ba9b;
}

.text-lane-28 {
	color: #bd107d;
}

.text-lane-29 {
	color: #494845;
}

.text-lane-31 {
	color: #725761;
}

.text-lane-33 {
	color: #cc8d3d;
}

.text-lane-34 {
	color: #98c568;
}

.text-lane-35 {
	color: #206574;
}

.text-lane-36 {
	color: #f18b28;
}

.text-lane-43 {
	color: #847b5a;
}

.text-lane-44 {
	color: #2d2c7e;
}

.text-lane-51 {
	color: #bd107d;
}

.text-lane-52 {
	color: #4578ac;
}

.text-lane-55 {
	color: #4578ac;
}

.text-lane-56 {
	color: #2f2b7f;
}
.text-lane-57 {
	color: #e53c2e;
}
.text-lane-58 {
	color: #68bb95;
}
.text-lane-59 {
	color: #295468;
}
.text-lane-71 {
	color: #2d6d46;
}
.text-lane-72 {
	color: #b3c338;
}
.text-lane-73 {
	color: #eb654b;
}
.text-lane-75 {
	color: #575454;
}
.text-lane-78 {
	color: #18a7bc;
}
.text-lane-79 {
	color: #f08728;
}

.text-lane-81 {
	color: #827b55;
}

.text-lane-82 {
	color: #de4c84;
}
.text-lane-83 {
	color: #ddc030;
}

.text-lane-87 {
	color: #fbbd2b;
}

.text-lane-88 {
	color: #d60e51;
}

.text-lane-89 {
	color: #199d48;
}

.text-lane-101 {
	color: #cac6c6;
}
.text-lane-102 {
	color: #cac6c6;
}
.text-lane-103 {
	color: #cac6c6;
}
.text-lane-105 {
	color: #cac6c6;
}
.text-lane-106 {
	color: #cac6c6;
}

.border-lane-1 {
	border-color: #d32600;
}

.border-lane-2 {
	border-color: #9aa51a;
	color: black;
}

.border-lane-3 {
	border-color: #e8b42e;
	color: black;
}

.border-lane-4 {
	border-color: #1b6a3c;
}

.border-lane-5 {
	border-color: #ca2958;
}

.border-lane-6 {
	border-color: #0a9d0a;
}

.border-lane-7 {
	border-color: #cb4138;
}

.border-lane-8 {
	border-color: #11b09b;
}

.border-lane-11 {
	border-color: #c53089;
}

.border-lane-12 {
	border-color: #1f609a;
}

.border-lane-13 {
	border-color: #088fa4;
}

.border-lane-14 {
	border-color: #744f98;
}

.border-lane-15 {
	border-color: #215266;
}

.border-lane-16 {
	color: black;
	border-color: #baa330;
}

.border-lane-17 {
	border-color: #564c27;
}

.border-lane-18 {
	border-color: #db654f;
}

.border-lane-21 {
	border-color: #e0b33c;
	color: black;
}

.border-lane-22 {
	border-color: #22a176;
}

.border-lane-23 {
	border-color: #2a245c;
}

.border-lane-24 {
	border-color: #28536a;
}

.border-lane-25 {
	border-color: #2491d3;
}

.border-lane-26 {
	border-color: #0a68b3;
}

.border-lane-27 {
	border-color: #69ba9b;
}

.border-lane-28 {
	border-color: #bd107d;
}

.border-lane-29 {
	border-color: #494845;
}

.border-lane-31 {
	border-color: #725761;
}

.border-lane-33 {
	border-color: #cc8d3d;
}

.border-lane-34 {
	border-color: #98c568;
}

.border-lane-35 {
	border-color: #206574;
}

.border-lane-36 {
	border-color: #f18b28;
}

.border-lane-43 {
	border-color: #847b5a;
}

.border-lane-44 {
	border-color: #2d2c7e;
}

.border-lane-51 {
	box-shadow: 0 0 0 8px #bd107d;
	color: black;
}

.border-lane-52 {

	box-shadow: 0 0 0 8px #4578ac;
	color: black;
}

.border-lane-55 {
	color: black;

	box-shadow: 0 0 0 8px #4578ac;
}

.border-lane-56 {

	box-shadow: 0 0 0 8px #2f2b7f;
	color: black;
}
.border-lane-57 {
	color: black;

	box-shadow: 0 0 0 8px #e53c2e;
}
.border-lane-58 {
	color: black;

	box-shadow: 0 0 0 8px #68bb95;
}
.border-lane-59 {
	color: black;

	box-shadow: 0 0 0 8px #295468;
}
.border-lane-71 {
	color: black;

	box-shadow: 0 0 0 8px #2d6d46;
}
.border-lane-72 {
	color: black;

	box-shadow: 0 0 0 8px #b3c338;
}
.border-lane-73 {
	color: black;

	box-shadow: 0 0 0 8px #eb654b;
}
.border-lane-75 {
	color: black;

	box-shadow: 0 0 0 8px #575454;
}
.border-lane-78 {
	color: black;
	box-shadow: 0 0 0 8px #18a7bc;
}
.border-lane-79 {
	color: black;

	box-shadow: 0 0 0 8px #f08728;
}

.border-lane-81 {
	color: black;

	box-shadow: 0 0 0 8px #827b55;
}

.border-lane-82 {
	color: black;

	box-shadow: 0 0 0 8px #de4c84;
}
.border-lane-83 {
	color: black;

	box-shadow: 0 0 0 8px #ddc030;
}

.border-lane-87 {

	box-shadow: 0 0 0 8px #fbbd2b;
}

.border-lane-88 {

	box-shadow: 0 0 0 8px #d60e51;
}

.border-lane-89 {

	box-shadow: 0 0 0 8px #199d48;
}

