#route_point_container {
	position: relative;
	margin: 60px auto 0;
	padding: 20px;
	background-color: var(--first_light);
	max-width: 1400px;
}

.solo_mobile {
	opacity: 0.5;
}

	.section_body_title {
		font-size: 27px;
		line-height: 27px;
		font-weight: 600;
		padding-bottom: 10px;
		border-bottom: 1px solid var(--fourth_color);
		text-align: center;
		color: var(--fourth_color);
		text-shadow: 1px 1px 1px #000000;
	}
	
	.section_body_abs {
		margin: 40px 0 30px;
		font-style: italic;
		text-align: center;
		color: var(--fourth_color);
		line-height: 30px;
		text-shadow: 1px 1px 1px #000000;
		font-weight: 600;
	}
	
		.section_body_abs a {
			display: block;
			font-weight: 600;
			color: var(--second_color);
			background-color: var(--fourth_color);
			padding: 5px;
			width: fit-content;
			margin: auto;
			text-shadow: none;
		}
		@media screen and (min-width : 1005px) {
			.section_body_abs a { display: inline-block; }
		}
	
	.route_point_info_group {
		display: flex;
		flex-direction: column;
	}
	@media screen and (min-width : 768px) {
		.route_point_info_group { flex-direction: row-reverse; justify-content: space-between; }
	}
	
		.route_point_info_box {
			flex: 1;
			display: flex;
			flex-direction: column;
			border-bottom: 2px solid var(--first_light);
		}
		.route_point_info_box:last-child {
			border-bottom: unset;
		}
		@media screen and (min-width: 768px) {
			.route_point_info_box:last-child { border-right: 2px solid var(--first_light); }
			.route_point_info_box { border-bottom: unset; }
		}
	
	.route_point_btt_container {
		text-align: center;
	}
	
		.route_point_btt_gotothis {
			border: unset;
			width: 270px;
			border-radius: unset;
			padding: 10px 5px;
			background-color: var(--first_color);
			margin-top: 40px;
		}

			.route_point_btt_gotothis svg {
				margin-right: 10px;
			}

	.route_point_info_head {
		padding: 10px;
		margin-top: 30px;
		font-weight: 700;
		font-style: italic;
	}
		
	.route_point_info_view {
		text-align: left;
		position: relative;
		background: var(--third_color);
		width: 100%;
		flex: 1;
	}
		
		.route_point_info_text {
			padding: 15px;
		}
		@media screen and (min-width : 993px) {
			.route_point_info_text { padding: 25px 15px 25px 40px; flex: 1; }
		}
		
		.route_point_info_text a {
			color: var(--first_text);
		}
		
		.route_point_info_title {
			font-size: 27px;
			line-height: 27px;
			margin-bottom: 15px;
			font-weight: 600;
		}
			
			.route_point_info_title_icon {
				display: inline-block;
				width: 32px;
				height: 32px;
				background-color: var(--fourth_color);
				border-radius: 50%;
				text-align: center;
				vertical-align: middle;
				padding-top: 1px;
			}
			
				.route_point_info_title_icon svg {
					font-size: 18px;
					color: var(--second_color);
				}
		
		.route_point_info_overlay {
			width: 100%;
			height: 100%;
			margin: auto;
			background-color: var(--fourth_color);
			overflow-y: scroll;
			position: fixed;
			top: 0;
			left: 0;
			z-index: 1000;
		}
		
			.route_point_info_close_icon {
				font-size: 24px;
				text-align: right;
				padding: 20px;
				color: var(--second_color);
				background-color: var(--first_color);
			}
			
				.div_icon_close {
					display: inline-block;
					width: 32px;
					height: 32px;
					background-color: var(--fourth_color);
					border-radius: 50%;
					text-align: center;
					vertical-align: middle;
					padding-top: 5px;
				}
		
			.route_point_iframe_overlay {
				width: 100%;
				height: 100%;
			}
				
			.route_point_item_btt_goto {
				border: unset;
				border-radius: unset;
				padding: 10px 0;
				background-color: var(--first_color);
				width: 100%;
			}
			
				.route_point_item_btt_goto a {
					text-decoration: none;
				}
			
				.route_point_item_btt_goto svg {
					margin-right: 10px;
				}
			
				.route_point_distance {
					display: inline-block;
					padding-left: 5px;
					border-left: 1px solid var(--fourth_color);
					text-transform: none;
				}
				
		.route_point_info_iframe_box {
			display: none;
		}
		
			.route_point_info_iframe_box iframe {
				width: 100%;
				height: 400px;
			}
			
.disable_desktop_overlay {
	display: none;
}
@media screen and (min-width : 993px) {
	.disable_desktop_overlay { display: flex; justify-content: center; position: absolute; background-color: color-mix(in srgb, var(--fourth_color) 80%, transparent); width: 100%; height: 100%; top: 0; left: 0; color: var(--first_color); font-size: 36px; line-height: 36px; font-weight: 600; text-shadow: 1px 1px 1px #000000; padding: 152px 20px 20px; }
}