/*
When you have buttons that users are likely to double-click on,
you don't want the double-clicking to select a bunch of random things.
Apply ...

  @include noselect()

 ... to add the styles to disable the selection on something like a button.

*/
/*
 * USAGE EXAMPLES:
 *
 * @include transition(width .2s linear);
 * @include transition(color .2s linear, background-color .3s linear);
 * @include transition(color .2s linear, background-color .3s linear, width .5s linear);
 * etc...
 *
 * */
/*
USAGE:

  @include borderbox()

*/
/* line 3, ../scss/_hetabs.scss */
tabs {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 2rem;
}
/* line 6, ../scss/_hetabs.scss */
tabs .tabs-btns {
  float: left;
  display: block;
  width: 100%;
  margin-bottom: 1.6rem;
  white-space: nowrap;
}
/* line 9, ../scss/_hetabs.scss */
tabs .tabs-btns .tab-btn {
  -webkit-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -ms-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -moz-user-select: -moz-none;
  -moz-user-select: none;
  -o-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #002856;
  position: relative;
  display: inline-block;
  float: left;
  padding: 0 20px;
  height: 35px;
  line-height: 35px;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 17px;
}
/* line 12, ../scss/_hetabs.scss */
tabs .tabs-btns .tab-btn:before {
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: transparent;
}
/* line 15, ../scss/_hetabs.scss */
tabs .tabs-btns .tab-btn.active:before {
  background-color: #32bcd4;
}
/* line 18, ../scss/_hetabs.scss */
tabs .tabs-btns .tab-btn:hover:before {
  background-color: #D0F6FD;
}
/* line 21, ../scss/_hetabs.scss */
tabs .tabs-btns .tab-btn:hover {
  color: #32bcd4;
}
/* line 24, ../scss/_hetabs.scss */
tabs .tabs-btns .tab-btn:first-child {
  padding-left: 0;
}
/* line 25, ../scss/_hetabs.scss */
tabs .tabs-btns .tab-btn:last-child {
  padding-right: 0;
}
/* line 28, ../scss/_hetabs.scss */
tabs .tabs-content {
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}
/* line 31, ../scss/_hetabs.scss */
tabs .tabs-content .tab-slide-title {
  display: none;
}
/* line 33, ../scss/_hetabs.scss */
tabs .tabs-content tab {
  position: fixed;
  left: -200%;
  top: -9999px;
  visibility: hidden;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 36, ../scss/_hetabs.scss */
tabs .tabs-content tab .tab-pad {
  padding: 2rem;
  background-color: #EAEAEA;
  float: left;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 39, ../scss/_hetabs.scss */
tabs .tabs-content tab .tab-pad > *:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
/* line 43, ../scss/_hetabs.scss */
tabs .tabs-content tab.active {
  position: relative;
  left: 0;
  top: 0;
  visibility: visible;
  display: block;
}

/* line 50, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-btns {
  display: none;
}
/* line 52, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content .tab-slide-title {
  font-family: "Source Sans Pro", sans-serif;
  background-color: #32bcd4;
  color: #fff;
  display: block;
  border: solid 1px rgba(255, 255, 255, 0.3);
  margin: 0;
  padding: 0 .5rem;
  font-size: 23px;
  line-height: 38px;
  cursor: pointer;
  -moz-user-select: -moz-none;
  -moz-user-select: none;
  -o-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 53, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content .tab-slide-title:hover {
  opacity: .9;
}
/* line 54, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content tab {
  position: relative;
  left: 0;
  top: 0;
  visibility: visible;
  display: block;
}
/* line 56, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content tab .tab-slide-title:before {
  content: " + ";
  display: inline-block;
  width: 20px;
  text-align: left;
  font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
}
/* line 57, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content tab .tab-slide-content {
  height: 0;
  overflow: hidden;
}
/* line 60, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content tab .tab-slide-content .tab-pad {
  padding: 1rem;
  background-color: transparent;
}
/* line 64, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content tab:last-child .tab-pad {
  border-bottom: solid 1px #32bcd4;
}
/* line 69, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content tab.slide-out .tab-slide-title:before {
  content: " - ";
}
/* line 70, ../scss/_hetabs.scss */
tabs.mobile-width .tabs-content tab.slide-out .tab-slide-content {
  height: auto;
}
