/* CRUISE FROM LANDING PAGE CSS */

/* PORT LIST & ITEMS ~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.portList {
	padding-left: 12px;
	padding-right: 12px;
}

.portItem {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

.portItem:last-child {
	border-bottom: none;
	padding-bottom: 15px;
}

.portItem a {
	font-weight: bold;
	color: #0059b3;
	text-decoration: none;
}

.portItem a:hover {
	text-decoration: underline;
}

.portItem a:after {
	content: " »";
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MEDIA QUERIES~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* MOBILE */
@media (max-width: 575px) {	
	.portItem div:first-child {
		margin-bottom: 8px;
	}
}

@media (min-width: 576px) {
	.portItem div:first-child {
		padding-left: 0;
	}
}