/*
* jQueryTab v2.0
* Copyright Dharma Poudel (@rogercomred)
* Free to use under the GPLv3 license.
* http://www.gnu.org/licenses/gpl-3.0.html
*/

/* == quick_reset */
* {
	border: none;
	margin: 0;
	padding: 0;
	outline: none;
}
/*  == common styles */
body {
/*	background: #f6f6f6;*/
	min-height: 100%;
/*	font: normal 13px/1.5 Arial, Helvetica, sans-serif;*/
/*	margin-bottom: 30px;*/
}
ul, ol {
	list-style: none outside none;
	margin-bottom: 0;
}
h1 {
	font-size: 25px;
	color: #000;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
h3 {
	margin: 30px 0 10px;
}
p {
	margin: 0 0 6px;
}
pre {
	border: 1px solid #ddd;
	box-shadow: 1px 1px 0 #fff, 2px 2px 0 #ddd;
	margin: 10px 0;
	padding: 10px;
	background: #fcfcfc;
}
#container {
	width: 80%;
	padding: 0px 50px;
	margin: 0 auto;
}
/*  == tab heading */
.tabs {
	border: 1px solid #20399d;
	overflow: hidden;
	border-top: 0px;
}
.tabs li {
	float: left;
}
.tabs li a {
/*	border-left: 1px solid #20399d;*/
	color: #20399d;
	display: block;
	font-weight: 400;
	padding: 10px 25px;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 1.5px;
}
.tabs li:first-child a {
	border-left: none;
}
.tabs li a:hover, .tabs li a:focus {
	color: #fff;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	background-color: rgba(32, 57, 157,1);
}
.tabs .active a {
	color: #fff;
	background-color: rgba(32, 57, 157,1);
}
/* == accordion */
.accordion_tabs {
	display: none;
	border-top: 1px solid #ccc;
	padding: 4px;
	font-weight: bold;
	background: #eee;
}
.tab_content_wrapper > .accordion_tabs:first-child {
	border-top: none;
}
a.accordion_tabs:link, a.accordion_tabs:visited {
	color: rgba(32, 57, 157,1);
	background: #fff;
	text-decoration: none;
}
a.accordion_tabs:hover, a.accordion_tabs:focus {
	color: rgba(32, 57, 157,1);
	background-color: rgba(32, 57, 157,.1);
}
a.accordion_tabs.active {
	color: rgba(32, 57, 157,1);
	border-bottom: 1px solid rgba(32, 57, 157,1);
	background: rgba(32, 57, 157,.1);
}
/*  == tab content  */
.tab_content_wrapper {
	overflow: hidden;
	position: relative;
	transition: all .3s ease-in-out .3s;
}
.tab_content {
	transition: all .6s ease-in-out;
	padding: 15px 0;
/*	background: #ffffff;*/
}
.toggle_display {
	display: block;
}
.toggle_position {
	position: absolute;
	width: 100%;
/*	height: auto;*/
	/*ck*/
	height: 100%;
	display: -webkit-inline-box;
}
.toggle_border {
	border: 1px solid #20399d;
	border-right: 0px;
	border-width: 0 1px 1px 1px;
}
.invert_border {
	border-width: 1px 1px 0 1px;
}

/* Media Queries
***********************/
@media screen and (max-width: 600px) {
	.accordion_tabs{
		display: block;
/*		float: left;*/
	}
/*
	.accordion_tabs{
		padding: 10px 10px;
		font-weight: 400;
		color: rgba(32, 57, 157,1);
		position: relative;
	}
	.accordion_tabs.active{
		color: rgba(32, 57, 157,1);
    	background-color: rgba(32, 57, 157,.1);
	}
	.toggle_position{
		float: left;
		height: 90%;
		margin-top: 45px;
	}
*/
	.viewplans-menu .priorityscroll ul.tabs{
		display: none;
	}
	section.tab_content_wrapper{
		height: 100%;
		overflow-y: scroll;
	}
	.browsplantabs{
		height: auto;
	}
	
	.datacardmargin{
		margin-bottom: 0px;
	}
	section.tab_content_wrapper::-webkit-scrollbar{
    width: 1em;
	}
	section.tab_content_wrapper::-webkit-scrollbar-track{
		-webkit-box-shadow: inset 0 0 6px rgba(32,57,157,0.025);
	}
	section.tab_content_wrapper::-webkit-scrollbar-thumb{
	  background-color: rgba(32,57,157,.055);
	  outline: 1px solid slategrey;
	}
	
}

/*
@media screen and (max-width: 600px) {
#container {
	width: 90%;
	padding: 40px 20px;
}
.accordion_tabs {
	display: block;
}
.tab_content_wrapper {
	height: auto !important;
			*	max-height: 500px;*
}
.tab_content {
	transition: none;
	padding: 10px;
}
.toggle_display {
	display: none;
}
.toggle_position {
	position: relative;
	height: auto;	*342px*
}
.toggle_border {
	border-width: 1px;
}
}*/