                                  
                      /*
* 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 */

ul,ol{ list-style:none outside none !important; margin:0!important;}
h1{font-size: 25px; color:#000; padding-bottom:20px; margin-bottom: 20px;}
h3{margin:30px 0 10px;}
/*p{margin: 0 0 20px;}*/
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 #83bd4d; overflow:hidden; border-top-left-radius: 8px; border-top-right-radius: 8px; }
.tabs li{ float:right; }
.tabs li a{ border-right: 1px solid #83bd4d; color:#21759B !important; display:block; font-weight:bold; padding: 15px 20px; }
.tabs li:first-child a{ border-right: none; }
.tabs li a:hover, .tabs li a:focus{ color:#D54E21 !important; }
.tabs .active a{ color: #000 !important; }

/* == accordion */
.accordion_tabs { display:none; border-top: 1px solid #83bd4d; padding: 10px; font-weight: bold; background: #b9f67f; }
.tab_content_wrapper > .accordion_tabs:first-child{ border-top:none; }
a.accordion_tabs:link, a.accordion_tabs:visited{ color: #4ab65f; font-family: "droid Arabic Kufi" , Tahoma, Geneva, sans-serif; }
a.accordion_tabs:hover, a.accordion_tabs:focus{ color:#01340b; }
a.accordion_tabs.active{ color: #000; border-bottom: 1px solid #83bd4d;}

/*  == 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;
 /*background:#f6f6f6;*/
}
.toggle_display{display:block;}
.toggle_position{
  position:absolute;
 }
.toggle_border{ border:1px solid #83bd4d; border-width: 0 1px 1px 1px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
.invert_border{ border-width: 1px 1px 0 1px;}

/* 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; border-radius: 8px; margin: 5px; }
}
