/* CRUISE DESTINATIONS LANDING PAGE CSS */

/* ACCORDIONS  ~~~~~~~~~~~~~~~~*/
.tab-pane > .accordion {
	margin-top: 15px;
	padding-bottom: 5px;
}

.accordion-button {
	font-weight: bold;
	color: #224273;
}

.accordion-button:not(.collapsed) {
	background-color: rgba(207, 226, 255, 0.4);
}

.accordion-body {
	padding-top: 8px;
	padding-bottom: 0;
}

.accordion-body li {
	margin-bottom: 6px;
}


/* DESTINATION LIST ~~~~~~~~~~~~~~~~~~~~*/
.destList {
	margin-left: 0;
	margin-right: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

.destList div:first-child {
	padding-left: 0;
}

.destList:last-child {
	border-bottom: none;
}

.destList a {
	font-weight: bold;
	color: #0059b3;
	text-decoration: none;
}

.destList a:hover {
	text-decoration: underline;
}

.destList a:after {
	content: " »";
}



/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MEDIA QUERIES~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* MOBILE */
@media (max-width: 575px) {
	.destList {
		padding-top: 15px;
	}

	.destList img {
		margin-bottom: 8px;
	}
	
	.destList div {
		padding-left: 0;
		padding-right: 0;
	}
}