/*
Stylesheet for any additional styles that are required by the content team after the build.
All selectors should be prefixed with .content__region to avoid conflicts.
This file should not be compiled from sass.
*/

.table-container
{
	width: 100%;
	overflow-y: auto;
	_overflow: auto;
	margin: 0em 0 1em;
}

.table-container::-webkit-scrollbar
{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}

.table-container::-webkit-scrollbar-thumb
{
	border-radius: 8px;
	border-bottom: 3px solid #fff !important;
	background-color: rgba(0, 0, 0, .3);
}

.table-container table tr td 
{
	border:solid 0px #f7f7f7 !important;
	background-color:#fff;
}

.table-container table {border:solid 0px #f7f7f7 !important;}

.table-container table tr {border-bottom:solid 1px #dce2e7 !important;}

.table-container table tr td p {margin:0px;}

.col1 {
    min-width: 150px;
    width: 35%;
}
.col2 {width:20%;}

/*****Table 2*****/

.table-container2
{
	width: 100%;
	overflow-y: auto;
	_overflow: auto;
	margin: 0 0 1em;
}

.table-container2::-webkit-scrollbar
{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}

.table-container2::-webkit-scrollbar-thumb
{
	border-radius: 8px;
	border-bottom: 3px solid #fff !important;
	background-color: rgba(0, 0, 0, .3);
}

.table-container2 table tr td 
{
	border:solid 1px #c4c4c4 !important;
	background-color:#fff;
}

.table-container2 table {border:solid 0px #f7f7f7 !important;}

.table-container2 table tr {border-bottom:solid 1px #F6F6F6 !important;}

.table-container2 table tr td p {margin:0px;}

.table-container2 table tr th {background-color:#cc9933; color:#fff;}

/*****End*****/


/****Caption****/

figure {
  background: none repeat scroll 0 0 #fff !important;
  border: none !important;
  border-radius: 10px;
  padding: 2px;
}

figure img {border-radius: 6px;}

figure figcaption {text-align: center; font-size: small; line-height: 20px;}

/****hide title for mobile****/

.activites-title {
	display: none;
}
@media only screen and (min-width:768px) {
	.activites-title {
		display: block;
	}
}

/****hide title for mobile****/

.popular-destinations {
	display: none;
}
@media only screen and (min-width:768px) {
	.popular-destinations {
		display: block;
	}
}

/****hide image for mobile****/

@media only screen and (max-width:768px) {
	.mobile_img_hide .image__container {
		display: none;
	
	}
}