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

/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)"; 

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Responsive 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;
  display: block;
  background: #f3eade;
  border: 1px solid #ede0cf;
  border-bottom: 0 none;
  color: #222222;
  text-shadow: none;
  text-align: center;
  padding: 0 10px;
  -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: #ee7f01;
  -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: #222222;
  border-bottom: 1px solid white;
}
.divideTabs > div {
  border-top: 1px solid #ede0cf;
  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 only screen and (max-width: 767px) {
  .divideTabs.tabsResponsive > ul {
    display: none!important;
  }
  .divideTabs.tabsResponsive > div.tabContent {
    display: block!important;
    padding: 0;
    margin: 0 0 1%;
    width: 100%;
    border: 1px solid #ede0cf;
  }
  .divideTabs.tabsResponsive .tabTitle {
    display: block;
    padding: 2% 3%;
    color: #222222;
    background: #f3eade;
    -moz-backface-visibility: visible;
  }
  .divideTabs.tabsResponsive .tabTitle:hover {
    background: #f4ece1;
  }
  .divideTabs.tabsResponsive .tabActive .tabTitle {
    background: #f7f1e9;
  }
  .divideTabs.tabsResponsive .tabContentWrapper {
    padding: 3%;
    width: 94%;
    border-bottom: 1px solid #ede0cf;
  }
  .divideTabs.tabsResponsive .tabContentWrapper select {
    min-width: 32.4%;
  }
}
/* ==========================================================================
   tablet + desktop styles
   ========================================================================== */

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