/* CRUISE DEALS LANDING PAGE */

/* EXTRA TOP NAV ~~~~~~~~~~~~~~~~~~~~~~*/
.deals-extra-topNav .nav {
	margin-top: 30px;
	margin-bottom: 20px;
}

.deals-extra-topNav .nav a {
	color: teal;
	padding: 8px 10px;
	text-decoration: none;
}

.deals-extra-topNav .nav a::after {
	content: "";
  	display: block;
  	margin: 0 auto;
  	width: 75%;
	padding-top: 8px;
  	border-bottom: 2px solid #fff;
}

.deals-extra-topNav .nav a:hover:after {
  	content: "";
  	display: block;
  	margin: 0 auto;
  	width: 75%;
  	padding-top: 8px;
  	border-bottom: 2px solid #d35400;
}


/* VENDOR LISTINGS ~~~~~~~~~~~~~~~~~~~~*/
.dealList {
	margin-left: 0;
	margin-right: 0;
	padding-top: 10px;
	border-bottom: 1px solid #ddd;
}

.dealList:last-child {
	border-bottom: none;
	padding-bottom: 15px;
}

.dealList a {
	font-weight: bold;
	color: #0059b3;
	text-decoration: none;
}

.dealList a:hover {
	text-decoration: underline;
}

.dealList a:after {
	content: " »";
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MEDIA QUERIES~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* MOBILE */
@media (max-width: 575px) {
	.dealList {
		padding-top: 15px;
	}
	
	.dealList > div {
		text-align: center;
	}

	.dealList img {
		margin-bottom: 20px;
	}
}

@media (min-width: 576px) {
	.dealList div:first-child {
		padding-left: 0;
	}
}


/* MOBILE TO TABLET */
@media (min-width: 576px) and (max-width: 767px) {}	

@media (min-width: 576px) and (max-width: 991px){}	


/* BEFORE TABLET BREAKPOINT */
@media (max-width: 767px) {}


/* TABLET */
@media (min-width: 768px) {}


@media (min-width: 768px) and (max-width: 991px) {}


@media (min-width: 992px) and (max-width: 1199px) {}


@media (max-width: 991px) {}


@media (min-width: 992px) {}


/* DEKSTOP AND LARGE SCREENS */
@media (max-width: 1199px) {}

@media (min-width: 1200px) {}