/*
* jQueryTab v2.0
* Copyright Dharma Poudel (@rogercomred)
* Free to use under the GPLv3 license.
* http://www.gnu.org/licenses/gpl-3.0.html
*/



#container{ width:80%; padding:0px 50px; margin:0 auto;}




/*  == tab heading */
.tabs {overflow:hidden;margin-left:39%; }
.tabs li{ float:left; background-color:#e30110; margin-right:5px; border-radius:10px 10px 0px 0px; font-size:16px;  }
.tabs li a{color:#fff; display:block;text-decoration:none; padding: 8px 35px; }
.tabs li:first-child a{ border-left: none; }
.tabs li a:hover, .tabs li a:focus{ color:#666; background-color:#FFF;border-radius:10px 10px 0px 0px; }
.tabs .active a{ color: #666;background-color:#FFF;border-radius:10px 10px 0px 0px; }

/* == accordion */
.accordion_tabs { display:none;padding: 10px; font-weight: bold; background: #fff; }
.tab_content_wrapper > .accordion_tabs:first-child{  }
a.accordion_tabs:link, a.accordion_tabs:visited{ color: #21759B; }
a.accordion_tabs:hover, a.accordion_tabs:focus{ color:#D54E21; }
a.accordion_tabs.active{ color: #666; }

/*  == tab content  */
.tab_content_wrapper{ position:relative; transition: all .3s ease-in-out .3s;}
.tab_content{ transition: all .6s ease-in-out; background:#fff;text-align:justify; color:#666; font-size:16px; line-height:38px;}
.toggle_display{display:block;}
.toggle_position{ position:absolute; }
.toggle_border{ }
.invert_border{}
@media screen and (min-width:1440px){
	.tabs {overflow:hidden; margin-left:40%; }
	.tab_content{ margin-left:10%;}}
@media screen and (max-width:1440px){
	.tabs {overflow:hidden; margin-left:38%; }
	.tab_content{ margin-left:0%;}}
@media screen and (max-width:1280px){
	#container{ width:1200px; padding:0px 50px; margin:0 auto;}
	.tabs {overflow:hidden; margin-left:38%;}}


/* Media Queries
***********************/
@media screen and (max-width: 600px) {
  #container{ width:90%; padding:40px 20px; }
  .accordion_tabs{ display:block; }
  .tab_content_wrapper{ height:auto !important;}
  .tab_content{ transition:none; padding:10px;}
  .toggle_display{display:none;}
  .toggle_position{ position:relative; }
  .toggle_border{ border-width: 1px; }
}