/* #####################################################################################################
	Divide Tabs responsive stylesheet
   ##################################################################################################### */

/*--- standard variables ---*/
/*--- media queries. When using responsive ---*/
/*--- custom class functions ---*/
/*----- Default functions -----*/
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*----- CSS3 Animation functions -----*/
.divideTabs > ul {
  margin: 0!important;
  list-style: none!important;
  z-index: 20;
  overflow: hidden;
}
.divideTabs > ul li {
  float: left;
  position: relative;
  margin: 0 0 0 1%;
  min-width: 100px;
}
.divideTabs > ul li:first-child {
  margin: 0;
}
.divideTabs > ul a {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  display: block;
  background: #f0f0f0;
  border: 1px solid #e6e6e6;
  border-bottom: 0 none;
  color: #202020;
  text-shadow: none;
  text-align: center;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: color 0 ease-in;
  transition: none;
}
.divideTabs > ul a:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #007dbf;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: color 0 ease-in;
  transition: none;
}
.divideTabs > ul li.active a,
.divideTabs > ul li.active a:hover {
  /*--Makes sure that the active tab does not listen to the hover properties--*/
  background: white;
  color: #202020;
  border-bottom: 1px solid white;
}
.divideTabs > div {
  border-top: 1px solid #e6e6e6;
  margin: -1px 0 0 0;
  background-color: white;
  display: none;
  padding: 3% 0;
  z-index: 19;
}
.divideTabs .tabTitle {
  display: none;
}
.divideTabs .tabActive {
  display: block;
}
/* ==========================================================================
   mobile styles
   ========================================================================== */

@media (max-width: 768px) {
  .divideTabs.tabsResponsive > ul {
    display: none!important;
  }
  .divideTabs.tabsResponsive > div.tabContent {
    display: block!important;
    padding: 0;
    margin: 0 0 1%;
    width: 100%;
    border: 1px solid #e6e6e6;
  }
  .divideTabs.tabsResponsive .tabTitle {
    display: block;
    padding: 2% 3%;
    color: #202020;
    background: #f0f0f0;
    -moz-backface-visibility: visible;
  }
  .divideTabs.tabsResponsive .tabTitle:hover {
    background: #f2f2f2;
  }
  .divideTabs.tabsResponsive .tabActive .tabTitle {
    background: #ededed;
    color: #007dbf;
  }
  .divideTabs.tabsResponsive .tabContentWrapper {
    padding: 3%;
    width: 94%;
    border-bottom: 1px solid #e6e6e6;
  }
}
/* ==========================================================================
   tablet + desktop styles
   ========================================================================== */

@media (min-width: 768px) {
  .divideTabs.tabsResponsive .tabContentWrapper {
    display: block!important;
  }
}
