.path_container{
	display:grid;
	grid-template-columns:1fr 2fr;
}

.pathways{
	margin-left:1rem;
	margin-bottom: 1rem;
	width:90%;
	float:left;
}

.pathway_table{
	border-spacing: 0;
}

.pathway_table td{
	border: thin solid black;
	padding:0.3rem;
	transition: all 0s;
}

.pathway_table td:nth-child(1){
	background-color:beige;
}

.pathway_table td:nth-child(2), .pathway_table td:nth-child(3), .pathway_table td:nth-child(4){
	background-color: RGB(220,220,220);
}

.pathway_table .path_detail{
	position:relative;
	transition: all 0.3s ease-in-out;
	left:0;
}

.pathway_subcontainer{
	margin-right:1rem;
	margin-bottom:1rem;
	margin-left:2rem;
	width:90%;
	float:left;
}

.path_sub_full{
	width:90%;
	margin-top:3rem;
}

.path_sub_table{
	width:100%;
	float:left;
	border-spacing:0;
}

.path_sub_table td{
	padding:0;
}

.path_sub_table td:nth-child(1){
	width:100px;
}

.path_sub_table .path_head_prog{
	font-size:1.4rem;
	padding-left:0.5rem;
	padding-right:0.5rem;
	background-color:royalblue;
	color:white;
	font-weight:bold;
	display:block;
	text-align:center;
}

.path_sub_table .path_head{
	font-size:1.4rem;
	color:white;
	font-weight:bold;
	display:block;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	background-color: RGB(50,50,100);
}

.path_sub_table .path_subhead_prog{
	padding-left:0.5rem;
	padding-right:0.5rem;
	background-color:#313131;
	color:white;
	font-weight:bold;
	display:block;
	text-align:center;
}

.path1{
	background-color:#313131;
	border:thin solid black;
}

.path_sub_table .path_subhead{
	color:#313131;
	font-weight:bold;
	display:block;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	background-color: #C0C0C0;
}

.path2{
	background-color: #C0C0C0;
	border:thin solid black;
}

.arrow{
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-top:0;
	margin-bottom:0;
}

.arrow img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	width:50px;
}


@media (min-width:1600px){
	.pathway_table .path_detail{
	position:relative;
	}
	
	.pathway_table .path_detail:hover{
	left:10px;
	cursor: pointer;
	}

	.pathway_table .path_detail:hover td{
	background-color:#FFEE59;
	color:#313131;
	}
	
	.pathway_table .path_detail:active td{
	background-color:white;
	color:#313131;
	}
}

@media (max-width:1600px){
	
	.path_container{
	display:block;
}
	
	.pathway_table .path_detail{
	position:inherit;
	}
	
	.pathway_subcontainer{
	margin-right:0;
	margin-left:0;
	width:100%;
	}

	.pathways{
	margin-left:0;
	width:100%;
	}
}