$gray: #ccc;
$warm-grey: #8b8b8b;
$gray-dark: #3e3e3e;
$btn-padding-x: 15px;
$gray-light: #eee;
$gray-gradient: #e0e0e0;
$gray-bg: #f8f8f8;
$orange: #ffc439;
$red: #cf000f;
$green: #67a509;
$gray-dim: #656565;
$gray-matt: #515151;
$black-transparent20: rgba(0, 0, 0, .2);

@mixin link-primary {
  color: $gray-dark;
  font-weight: 500;
}

@mixin link-secondary {
  color: $blue;
}

@mixin button-primary {
  background-color: $blue;
  border-color: $blue;
  color: $white;
}

@mixin button-secondary {
  background-color: $white;
  border-color: $blue;
  color: $blue;
}

@mixin button-action {
  background-color: $green;
  border-color: $green;
  color: $white;
}

@mixin button-large {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 1rem;
  line-height: 1.5;
}

@mixin button-small {
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 500;
}

@mixin button-full {
  width: 100%;
}

@mixin button-min160 {
  min-width: 160px;

  @include media-breakpoint-down(sm) {
    @include button-full;
  }
}

@mixin button-slider {
  font-size: 1.25rem;
  height: 30px;
  line-height: normal;
  padding: 2px 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  z-index: 1;
}

@mixin button-thumbs {
  background: transparent;
  border: 0;
  font-size: 20px;
  height: 24px;
  line-height: 20px;
  padding: 2px 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  z-index: 1;
}

@mixin button-toggle {
  font-size: 12px;
  height: 18px;
  line-height: normal;
  padding: 0;
  width: 18px;
  color: $warm-grey;
  border-radius: 2px;
  border-color: transparent;
}
