.tubi.button {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  min-height: 1em;
  outline: none;
  border: none;
  font-family: "Open Sans", sans-serif;
  background-color: #F5F5F5;
  color: #333;
  margin: 0em;
  padding: 1em 1.5em;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  text-decoration: none;
  border-radius: 0.25em;
  -webkit-box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, -webkit-box-shadow 0.25s ease;
  -moz-transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
/*--------------
     Active
---------------*/
.tubi.buttons .active.button,
.tubi.active.button {
  background-color: #EAEAEA;
  background-image: none;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
  color: rgba(0, 0, 0, 0.7);
}
/*--------------
      Hover
---------------*/
.tubi.button:hover {
  color: rgba(0, 0, 0, 0.7);
  background-color: #EBEBEB;
}
.tubi.button.active:hover {
  background-image: none;
}
.tubi.button:hover .icon,
.tubi.button.hover .icon {
  opacity: 0.85;
}
/*--------------
      Down
---------------*/
.tubi.button:active,
.tubi.active.button:active {
  background-color: #F1F1F1;
  color: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
}
/*--------------
    Loading
---------------*/
.tubi.loading.button {
  position: relative;
  cursor: default;
  background-color: #FFFFFF;
  color: transparent;
  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  transition: all 0s linear;
}
.tubi.loading.button:after {
  position: absolute;
  top: 0em;
  left: 0em;
  width: 100%;
  height: 100%;
  content: '';
  background: transparent url(../images/loader-mini.gif) no-repeat 50% 50%;
}
.tubi.labeled.icon.loading.button .icon {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/*-------------------
      Disabled
--------------------*/
.tubi.disabled.button,
.tubi.disabled.button:hover,
.tubi.disabled.button.active {
  background-color: #DDDDDD;
  cursor: default;
  color: rgba(0, 0, 0, 0.5);
  opacity: 0.3;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/*******************************
             Types
*******************************/
/*-------------------
       Animated
--------------------*/
.tubi.animated.button {
  position: relative;
  overflow: hidden;
}
.tubi.animated.button .visible.content {
  position: relative;
}
.tubi.animated.button .hidden.content {
  position: absolute;
  width: 100%;
}
/* Horizontal */
.tubi.animated.button .visible.content,
.tubi.animated.button .hidden.content {
  -webkit-transition: right 0.3s ease 0s;
  -moz-transition: right 0.3s ease 0s;
  transition: right 0.3s ease 0s;
}
.tubi.animated.button .visible.content {
  left: auto;
  right: 0%;
}
.tubi.animated.button .hidden.content {
  top: 50%;
  left: auto;
  right: -100%;
  margin-top: -0.55em;
}
.tubi.animated.button:hover .visible.content {
  left: auto;
  right: 200%;
}
.tubi.animated.button:hover .hidden.content {
  left: auto;
  right: 0%;
}
/* Vertical */
.tubi.vertical.animated.button .visible.content,
.tubi.vertical.animated.button .hidden.content {
  -webkit-transition: top 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -moz-transition: top 0.3s ease 0s, -moz-transform 0.3s ease 0s;
  transition: top 0.3s ease 0s, transform 0.3s ease 0s;
}
.tubi.vertical.animated.button .visible.content {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  right: auto;
}
.tubi.vertical.animated.button .hidden.content {
  top: -100%;
  left: 0%;
  right: auto;
}
.tubi.vertical.animated.button:hover .visible.content {
  -webkit-transform: translateY(200%);
  -moz-transform: translateY(200%);
  -ms-transform: translateY(200%);
  transform: translateY(200%);
  right: auto;
}
.tubi.vertical.animated.button:hover .hidden.content {
  top: 50%;
  right: auto;
}
/* Fade */
.tubi.fade.animated.button .visible.content,
.tubi.fade.animated.button .hidden.content {
  -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s, -moz-transform 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
}
.tubi.fade.animated.button .visible.content {
  left: auto;
  right: auto;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.tubi.fade.animated.button .hidden.content {
  opacity: 0;
  left: 0%;
  right: auto;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.tubi.fade.animated.button:hover .visible.content {
  left: auto;
  right: auto;
  opacity: 0;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}
.tubi.fade.animated.button:hover .hidden.content {
  left: 0%;
  right: auto;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/*-------------------
       Primary
--------------------*/
.tubi.primary.buttons .button,
.tubi.primary.button {
  background-color: #D95C5C;
  color: #FFFFFF;
}
.tubi.primary.buttons .button:hover,
.tubi.primary.button:hover,
.tubi.primary.buttons .active.button,
.tubi.primary.button.active {
  background-color: #E75859;
  color: #FFFFFF;
}
.tubi.primary.buttons .button:active,
.tubi.primary.button:active {
  background-color: #D24B4C;
  color: #FFFFFF;
}
/*-------------------
      Secondary
--------------------*/
.tubi.secondary.buttons .button,
.tubi.secondary.button {
  background-color: #00B5AD;
  color: #FFFFFF;
}
.tubi.secondary.buttons .button:hover,
.tubi.secondary.button:hover,
.tubi.secondary.buttons .active.button,
.tubi.secondary.button.active {
  background-color: #009A93;
  color: #FFFFFF;
}
.tubi.secondary.buttons .button:active,
.tubi.secondary.button:active {
  background-color: #00847E;
  color: #FFFFFF;
}
/*-------------------
       Social
--------------------*/
/* Facebook */
.tubi.facebook.button {
  background-color: #3B579D;
  color: #FFFFFF;
}
.tubi.facebook.button:hover {
  background-color: #3A59A9;
  color: #FFFFFF;
}
.tubi.facebook.button:active {
  background-color: #334F95;
  color: #FFFFFF;
}
/* Twitter */
.tubi.twitter.button {
  background-color: #4092CC;
  color: #FFFFFF;
}
.tubi.twitter.button:hover {
  background-color: #399ADE;
  color: #FFFFFF;
}
.tubi.twitter.button:active {
  background-color: #3283BC;
  color: #FFFFFF;
}
/* Google Plus */
.tubi.google.plus.button {
  background-color: #D34836;
  color: #FFFFFF;
}
.tubi.google.plus.button:hover {
  background-color: #E3432E;
  color: #FFFFFF;
}
.tubi.google.plus.button:active {
  background-color: #CA3A27;
  color: #FFFFFF;
}
/* Linked In */
.tubi.linkedin.button {
  background-color: #1F88BE;
  color: #FFFFFF;
}
.tubi.linkedin.button:hover {
  background-color: #1394D6;
  color: #FFFFFF;
}
.tubi.linkedin.button:active {
  background-color: #1179AE;
  color: #FFFFFF;
}
/* YouTube */
.tubi.youtube.button {
  background-color: #CC181E;
  color: #FFFFFF;
}
.tubi.youtube.button:hover {
  background-color: #DF0209;
  color: #FFFFFF;
}
.tubi.youtube.button:active {
  background-color: #A50006;
  color: #FFFFFF;
}
/* Instagram */
.tubi.instagram.button {
  background-color: #49769C;
  color: #FFFFFF;
}
.tubi.instagram.button:hover {
  background-color: #4781B1;
  color: #FFFFFF;
}
.tubi.instagram.button:active {
  background-color: #38658A;
  color: #FFFFFF;
}
/* Pinterest */
.tubi.pinterest.button {
  background-color: #00ACED;
  color: #FFFFFF;
}
.tubi.pinterest.button:hover {
  background-color: #00B9FF;
  color: #FFFFFF;
}
.tubi.pinterest.button:active {
  background-color: #009EDA;
  color: #FFFFFF;
}
/* vk.com */
.tubi.vk.button {
  background-color: #4D7198;
  color: #FFFFFF;
}
.tubi.vk.button:hover {
  background-color: #537AA5;
  color: #FFFFFF;
}
.tubi.vk.button:active {
  background-color: #405E7E;
  color: #FFFFFF;
}
/*--------------
     Icon
---------------*/
.tubi.button > .icon {
  margin-right: 0.6em;
  line-height: 1;
  -webkit-transition: opacity 0.1s ease;
  -moz-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
/*******************************
           Variations
*******************************/
/*-------------------
       Floated
--------------------*/
.tubi.left.floated.buttons,
.tubi.left.floated.button {
  float: left;
  margin-right: 0.25em;
}
.tubi.right.floated.buttons,
.tubi.right.floated.button {
  float: right;
  margin-left: 0.25em;
}
/*-------------------
        Sizes
--------------------*/
.tubi.buttons .button,
.tubi.button {
  font-size: 1rem;
}
.tubi.mini.buttons .button,
.tubi.mini.buttons .or,
.tubi.mini.button {
  font-size: 0.8rem;
}
.tubi.mini.buttons .button,
.tubi.mini.button {
  padding: 0.6em 0.8em;
}
.tubi.mini.icon.buttons .button,
.tubi.mini.buttons .icon.button {
  padding: 0.6em 0.6em;
}
.tubi.tiny.buttons .button,
.tubi.tiny.buttons .or,
.tubi.tiny.button {
  font-size: 0.875em;
}
.tubi.tiny.buttons .button,
.tubi.tiny.buttons .button,
.tubi.tiny.button {
  padding: 0.6em 0.8em;
}
.tubi.tiny.icon.buttons .button,
.tubi.tiny.buttons .icon.button {
  padding: 0.6em 0.6em;
}
.tubi.small.buttons .button,
.tubi.small.buttons .or,
.tubi.small.button {
  font-size: 0.875rem;
}
.tubi.large.buttons .button,
.tubi.large.buttons .or,
.tubi.large.button {
  font-size: 1.125rem;
}
.tubi.big.buttons .button,
.tubi.big.buttons .or,
.tubi.big.button {
  font-size: 1.25rem;
}
.tubi.huge.buttons .button,
.tubi.huge.buttons .or,
.tubi.huge.button {
  font-size: 1.375rem;
}
.tubi.massive.buttons .button,
.tubi.massive.buttons .or,
.tubi.massive.button {
  font-size: 1.5rem;
  font-weight: bold;
}
/* Or resize */
.tubi.tiny.buttons .or:before,
.tubi.mini.buttons .or:before {
  width: 1.45em;
  height: 1.55em;
  line-height: 1.4;
  margin-left: -0.725em;
  margin-top: -0.25em;
}
.tubi.tiny.buttons .or:after,
.tubi.mini.buttons .or:after {
  height: 1.45em;
}
/* loading */
.tubi.huge.loading.button:after {
  background-image: url(../images/loader-small.gif);
}
.tubi.massive.buttons .loading.button:after,
.tubi.gigantic.buttons .loading.button:after,
.tubi.massive.loading.button:after,
.tubi.gigantic.loading.button:after {
  background-image: url(../images/loader-medium.gif);
}
.tubi.huge.loading.button:after,
.tubi.huge.loading.button.active:after {
  background-image: url(../images/loader-small.gif);
}
.tubi.massive.buttons .loading.button:after,
.tubi.gigantic.buttons .loading.button:after,
.tubi.massive.loading.button:after,
.tubi.gigantic.loading.button:after,
.tubi.massive.buttons .loading.button.active:after,
.tubi.gigantic.buttons .loading.button.active:after,
.tubi.massive.loading.button.active:after,
.tubi.gigantic.loading.button.active:after {
  background-image: url(../images/loader-medium.gif);
}
/*--------------
    Icon Only
---------------*/
.tubi.icon.buttons .button,
.tubi.icon.button {
  padding: 1em;
}
.tubi.icon.buttons .button > .icon,
.tubi.icon.button > .icon {
  opacity: 0.9;
  margin: 0em;
  vertical-align: top;
}
/*-------------------
        Basic
--------------------*/
.tubi.basic.buttons .button,
.tubi.basic.button {
  background-color:transparent;
  background-image: none;
  color: #808080;
  font-weight: normal;
  text-transform: none;
  -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.tubi.basic.buttons {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.1) inset;
  border-radius: 0.25em;
}
.tubi.basic.buttons .button:hover,
.tubi.basic.button:hover {
  background-image: none;
  color: #888888;
  -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.18) inset;
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.18) inset;
}
.tubi.basic.buttons .button:active,
.tubi.basic.button:active {
  background-color: rgba(0, 0, 0, 0.02);
  color: #888888;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
}
.tubi.basic.buttons .button.active,
.tubi.basic.button.active {
  background-color: rgba(0, 0, 0, 0.05);
  color: #888888;
  -webkit-box-shadow: 0px 0px 0px 2px #BDBDBD inset;
  box-shadow: 0px 0px 0px 2px #BDBDBD inset;
}
.tubi.basic.buttons .button.active:hover,
.tubi.basic.button.active:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
/* Inverted */
.tubi.basic.inverted.buttons .button,
.tubi.basic.inverted.button {
  color: #ffffff;
  -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset;
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset;
}
.tubi.basic.inverted.buttons .button:hover,
.tubi.basic.inverted.button:hover {
  background-image: none;
  color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.8) inset;
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.8) inset;
}
.tubi.basic.inverted.buttons .button:active,
.tubi.basic.inverted.button:active {
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1) inset;
}
.tubi.basic.inverted.buttons .button.active,
.tubi.basic.inverted.button.active {
  background-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tubi.basic.inverted.buttons .button.active:hover,
.tubi.basic.inverted.button.active:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
/* Basic Group */
.tubi.basic.buttons .button {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tubi.basic.buttons .button:hover,
.tubi.basic.buttons .button:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tubi.basic.buttons .button.active,
.tubi.basic.buttons .button.active:hover {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
}
/*--------------
   Labeled Icon
---------------*/
.tubi.labeled.icon.buttons .button,
.tubi.labeled.icon.button {
  position: relative;
  padding-left: 4em;
  padding-right: 1.4em;
}
.tubi.labeled.icon.buttons > .button > .icon,
.tubi.labeled.icon.button > .icon {
  position: absolute;
  top: 0em;
  left: 0em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 2.75em;
  height: 100%;
  padding-top: 1em;
  background-color: rgba(0, 0, 0, 0.05);
  text-align: center;
  border-radius: 0.25em 0px 0px 0.25em;
  line-height: 1;
  -webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
  box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
}
.tubi.labeled.icon.buttons .button > .icon {
  border-radius: 0em;
}
.tubi.labeled.icon.buttons .button:first-child > .icon {
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
}
.tubi.labeled.icon.buttons .button:last-child > .icon {
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}
.tubi.vertical.labeled.icon.buttons .button:first-child > .icon {
  border-radius: 0em;
  border-top-left-radius: 0.25em;
}
.tubi.vertical.labeled.icon.buttons .button:last-child > .icon {
  border-radius: 0em;
  border-bottom-left-radius: 0.25em;
}
.tubi.right.labeled.icon.button {
  padding-left: 1.4em;
  padding-right: 4em;
}
.tubi.left.fluid.labeled.icon.button,
.tubi.right.fluid.labeled.icon.button {
  padding-left: 1.4em;
  padding-right: 1.4em;
}
.tubi.right.labeled.icon.button .icon {
  left: auto;
  right: 0em;
  border-radius: 0em 0.25em 0.25em 0em;
  -webkit-box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
}
/*--------------
     Toggle
---------------*/
.tubi.toggle.buttons .active.button,
.tubi.buttons .button.toggle.active,
.tubi.button.toggle.active {
  background-color: #69A261;
  color: #FFFFFF;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tubi.button.toggle.active:hover {
  background-color: #78ac70;
  color: #FFFFFF;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/*--------------
    Circular
---------------*/
.tubi.circular.button {
  border-radius: 10em;
}
/*--------------
     Attached
---------------*/
.tubi.attached.button {
  display: block;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
.tubi.attached.top.button {
  border-radius: 0.25em 0.25em 0em 0em;
}
.tubi.attached.bottom.button {
  border-radius: 0em 0em 0.25em 0.25em;
}
.tubi.attached.left.button {
  display: inline-block;
  border-left: none;
  padding-right: 0.75em;
  text-align: right;
  border-radius: 0.25em 0em 0em 0.25em;
}
.tubi.attached.right.button {
  display: inline-block;
  padding-left: 0.75em;
  text-align: left;
  border-radius: 0em 0.25em 0.25em 0em;
}
/*-------------------
      Or Buttons
--------------------*/
.tubi.buttons .or {
  position: relative;
  float: left;
  width: 0.3em;
  height: 1.1em;
  z-index: 3;
}
.tubi.buttons .or:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: 'or';
  background-color: #FFFFFF;
  margin-top: 0;
  margin-left: -0.9em;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.55;
  color: #AAAAAA;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  border-radius: 500px;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.tubi.buttons .or[data-text]:before {
  content: attr(data-text);
}
.tubi.buttons .or:after {
  position: absolute;
  top: 0em;
  left: 0em;
  content: ' ';
  width: 0.3em;
  height: 1.7em;
  background-color: transparent;
  border-top: 0.5em solid #FFFFFF;
  border-bottom: 0.5em solid #FFFFFF;
}
/* Fluid Or */
.tubi.fluid.buttons .or {
  width: 0em;
}
.tubi.fluid.buttons .or:after {
  display: none;
}
/*-------------------
       Attached
--------------------*/
/* Plural Attached */
.attached.tubi.buttons {
  margin: 0px;
  border-radius: 4px 4px 0px 0px;
}
.attached.tubi.buttons .button:first-child {
  border-radius: 4px 0px 0px 0px;
}
.attached.tubi.buttons .button:last-child {
  border-radius: 0px 4px 0px 0px;
}
/* Bottom Side */
.bottom.attached.tubi.buttons {
  margin-top: -1px;
  border-radius: 0px 0px 4px 4px;
}
.bottom.attached.tubi.buttons .button:first-child {
  border-radius: 0px 0px 0px 4px;
}
.bottom.attached.tubi.buttons .button:last-child {
  border-radius: 0px 0px 4px 0px;
}
/* Left Side */
.left.attached.tubi.buttons {
  margin-left: -1px;
  border-radius: 0px 4px 4px 0px;
}
.left.attached.tubi.buttons .button:first-child {
  margin-left: -1px;
  border-radius: 0px 4px 0px 0px;
}
.left.attached.tubi.buttons .button:last-child {
  margin-left: -1px;
  border-radius: 0px 0px 4px 0px;
}
/* Right Side */
.right.attached.tubi.buttons,
.right.attached.tubi.buttons .button {
  margin-right: -1px;
  border-radius: 4px 0px 0px 4px;
}
.right.attached.tubi.buttons .button:first-child {
  margin-left: -1px;
  border-radius: 4px 0px 0px 0px;
}
.right.attached.tubi.buttons .button:last-child {
  margin-left: -1px;
  border-radius: 0px 0px 0px 4px;
}
/* Fluid */
.tubi.fluid.buttons,
.tubi.button.fluid,
.tubi.fluid.buttons > .button {
  display: block;
  width: 100%;
}
.tubi.\32.buttons > .button,
.tubi.two.buttons > .button {
  width: 50%;
}
.tubi.\33.buttons > .button,
.tubi.three.buttons > .button {
  width: 33.333%;
}
.tubi.\34.buttons > .button,
.tubi.four.buttons > .button {
  width: 25%;
}
.tubi.\35.buttons > .button,
.tubi.five.buttons > .button {
  width: 20%;
}
.tubi.\36.buttons > .button,
.tubi.six.buttons > .button {
  width: 16.666%;
}
.tubi.\37.buttons > .button,
.tubi.seven.buttons > .button {
  width: 14.285%;
}
.tubi.\38.buttons > .button,
.tubi.eight.buttons > .button {
  width: 12.500%;
}
.tubi.\39.buttons > .button,
.tubi.nine.buttons > .button {
  width: 11.11%;
}
.tubi.\31\30.buttons > .button,
.tubi.ten.buttons > .button {
  width: 10%;
}
.tubi.\31\31.buttons > .button,
.tubi.eleven.buttons > .button {
  width: 9.09%;
}
.tubi.\31\32.buttons > .button,
.tubi.twelve.buttons > .button {
  width: 8.3333%;
}
/* Fluid Vertical Buttons */
.tubi.fluid.vertical.buttons,
.tubi.fluid.vertical.buttons > .button {
  display: block;
  width: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.tubi.\32.vertical.buttons > .button,
.tubi.two.vertical.buttons > .button {
  height: 50%;
}
.tubi.\33.vertical.buttons > .button,
.tubi.three.vertical.buttons > .button {
  height: 33.333%;
}
.tubi.\34.vertical.buttons > .button,
.tubi.four.vertical.buttons > .button {
  height: 25%;
}
.tubi.\35.vertical.buttons > .button,
.tubi.five.vertical.buttons > .button {
  height: 20%;
}
.tubi.\36.vertical.buttons > .button,
.tubi.six.vertical.buttons > .button {
  height: 16.666%;
}
.tubi.\37.vertical.buttons > .button,
.tubi.seven.vertical.buttons > .button {
  height: 14.285%;
}
.tubi.\38.vertical.buttons > .button,
.tubi.eight.vertical.buttons > .button {
  height: 12.500%;
}
.tubi.\39.vertical.buttons > .button,
.tubi.nine.vertical.buttons > .button {
  height: 11.11%;
}
.tubi.\31\30.vertical.buttons > .button,
.tubi.ten.vertical.buttons > .button {
  height: 10%;
}
.tubi.\31\31.vertical.buttons > .button,
.tubi.eleven.vertical.buttons > .button {
  height: 9.09%;
}
.tubi.\31\32.vertical.buttons > .button,
.tubi.twelve.vertical.buttons > .button {
  height: 8.3333%;
}
/*-------------------
       Colors
--------------------*/
/*--- Black ---*/
.tubi.black.buttons .button,
.tubi.black.button {
  background-color: #5C6166;
  color: #FFFFFF;
}
.tubi.black.buttons .button:hover,
.tubi.black.button:hover {
  background-color: #4C4C4C;
  color: #FFFFFF;
}
.tubi.black.buttons .button.active,
.tubi.black.button.active {
  background-color: #4C4C4C;
  color: #FFFFFF;
}
/*--- danger ---*/
.tubi.danger.buttons .button,
.tubi.danger.button {
  background-color: #A26161;
  color: #FFFFFF;
}
.tubi.danger.buttons .button:hover,
.tubi.danger.button:hover,
.tubi.danger.buttons .active.button,
.tubi.danger.button.active {
  background-color: #ac7070;
  color: #FFFFFF;
}
.tubi.danger.buttons .button:active,
.tubi.danger.button:active {
  background-color: #925757;
  color: #FFFFFF;
}
/*--- warning ---*/
.tubi.warning.buttons .button,
.tubi.warning.button {
  background-color: #EDAA10;
  color: #FFFFFF;
}
.tubi.warning.buttons .button:hover,
.tubi.warning.button:hover,
.tubi.warning.buttons .active.button,
.tubi.warning.button.active {
  background-color: #f0b327;
  color: #FFFFFF;
}
.tubi.warning.buttons .button:active,
.tubi.warning.button:active {
  background-color: #d39810;
  color: #FFFFFF;
}
/*--- info ---*/
.tubi.info.buttons .button,
.tubi.info.button {
  background-color: #5795AF;
  color: #FFFFFF;
}
.tubi.info.buttons .button:hover,
.tubi.info.button:hover,
.tubi.info.buttons .active.button,
.tubi.info.button.active {
  background-color: #68a0b8;
  color: #FFFFFF;
}
.tubi.info.buttons .button:active,
.tubi.info.button:active {
  background-color: #4d87a0;
  color: #FFFFFF;
}
/*--- Purple ---*/
.tubi.purple.buttons .button,
.tubi.purple.button {
  background-color: #7A6591;
  color: #FFFFFF;
}
.tubi.purple.buttons .button:hover,
.tubi.purple.button:hover,
.tubi.purple.buttons .active.button,
.tubi.purple.button.active {
  background-color: #87719f;
  color: #FFFFFF;
}
.tubi.purple.buttons .button:active,
.tubi.purple.button:active {
  background-color: #6d5a82;
  color: #FFFFFF;
}
/*--- Teal ---*/
.tubi.teal.buttons .button,
.tubi.teal.button {
  background-color: #61A299;
  color: #FFFFFF;
}
.tubi.teal.buttons .button:hover,
.tubi.teal.button:hover,
.tubi.teal.buttons .active.button,
.tubi.teal.button.active {
  background-color: #70aca4;
  color: #FFFFFF;
}
.tubi.teal.buttons .button:active,
.tubi.teal.button:active {
  background-color: #57928a;
  color: #FFFFFF;
}
/*---------------
    Positive
----------------*/
.tubi.positive.buttons .button,
.tubi.positive.button {
  background-color: #61A270;
  color: #FFFFFF;
}
.tubi.positive.buttons .button:hover,
.tubi.positive.button:hover,
.tubi.positive.buttons .active.button,
.tubi.positive.button.active {
  background-color: #70ac7e;
  color: #FFFFFF;
}
.tubi.positive.buttons .button:active,
.tubi.positive.button:active {
  background-color: #579265;
  color: #FFFFFF;
}
/*---------------
     Negative
----------------*/
.tubi.negative.buttons .button,
.tubi.negative.button {
  background-color: #A26161;
  color: #FFFFFF;
}
.tubi.negative.buttons .button:hover,
.tubi.negative.button:hover,
.tubi.negative.buttons .active.button,
.tubi.negative.button.active {
  background-color: #ac7070;
  color: #FFFFFF;
}
.tubi.negative.buttons .button:active,
.tubi.negative.button:active {
  background-color: #925757;
  color: #FFFFFF;
}
/*******************************
            Groups
*******************************/
.tubi.buttons {
  display: inline-block;
  vertical-align: middle;
}
.tubi.buttons:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.tubi.buttons .button:first-child {
  border-left: none;
}
.tubi.buttons .button {
  float: left;
  border-radius: 0em;
  -webkit-box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, 0.075), -1px 0 0 0 rgba(255,255,255,0.25)
}
.tubi.buttons .button:first-child {
  margin-left: 0em;
  border-top-left-radius: 0.25em;
  border-bottom-left-radius: 0.25em;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tubi.buttons .button:last-child {
  border-top-right-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
}
/* Vertical  Style */
.tubi.vertical.buttons {
  display: inline-block;
}
.tubi.vertical.buttons .button {
  display: block;
  float: none;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
}
.tubi.vertical.buttons .button:first-child,
.tubi.vertical.buttons .mini.button:first-child,
.tubi.vertical.buttons .tiny.button:first-child,
.tubi.vertical.buttons .small.button:first-child,
.tubi.vertical.buttons .massive.button:first-child,
.tubi.vertical.buttons .huge.button:first-child {
  margin-top: 0px;
  border-radius: 0.25em 0.25em 0px 0px;
}
.tubi.vertical.buttons .button:last-child,
.tubi.vertical.buttons .mini.button:last-child,
.tubi.vertical.buttons .tiny.button:last-child,
.tubi.vertical.buttons .small.button:last-child,
.tubi.vertical.buttons .massive.button:last-child,
.tubi.vertical.buttons .huge.button:last-child,
.tubi.vertical.buttons .gigantic.button:last-child {
  border-radius: 0px 0px 0.25em 0.25em;
}