/* typography.source.less, colors.source.less, utilities.source.less */

/* less.php /var/www/html/slack/style/typography.source.less */
/*
 * slack-ui
 *
 * Copyright 2013 Tiny Speck
 *
 * typography.css is for site-wide fonts and typography
 *
 */
/*
 * slack-ui
 *
 * Copyright 2013 Tiny Speck
 *
 * typography.less defines variables for site-wide typography.
 */
/* Double-quotes are required to get Helvetica Neue to load properly */
/* Fonts */
.helvetica {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.lato {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.lato_black {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}
.lato_bold {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.lato_regular {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
}
.burnt_violet {
  color: #4d394b !important;
}
.burnt_violet_bg {
  background-color: #4d394b !important;
}
.ocean_teal {
  color: #4c9689 !important;
}
.ocean_teal_bg {
  background-color: #4c9689 !important;
}
.havana_blue {
  color: #2a80b9 !important;
}
.havana_blue_bg {
  background-color: #2a80b9 !important;
}
.pale_blue {
  color: #f1f7fa !important;
}
.pale_blue_bg {
  background-color: #f1f7fa !important;
}
.candy_red {
  color: #eb4d5c !important;
}
.candy_red_bg {
  background-color: #eb4d5c !important;
}
.indifferent_grey {
  color: #555459 !important;
}
.indifferent_grey_bg {
  background-color: #555459 !important;
}
.severe_grey {
  color: #3d3c40 !important;
}
.severe_grey_bg {
  background-color: #3d3c40 !important;
}
.dull_grey {
  color: #8b898f !important;
}
.dull_grey_bg {
  background-color: #8b898f !important;
}
.subtle_silver {
  color: #9e9ea6 !important;
}
.subtle_silver_bg {
  background-color: #9e9ea6 !important;
}
.cloud_silver {
  color: #babbbf !important;
}
.cloud_silver_bg {
  background-color: #babbbf !important;
}
.sky_blue {
  color: #439fe0 !important;
}
.sky_blue_bg {
  background-color: #439fe0 !important;
}
.slate_blue {
  color: #3d4b5b !important;
}
.slate_blue_bg {
  background-color: #3d4b5b !important;
}
.muddy_lilac {
  color: #937e91 !important;
}
.muddy_lilac_bg {
  background-color: #937e91 !important;
}
.moscow_red {
  color: #d00000 !important;
}
.moscow_red_bg {
  background-color: #d00000 !important;
}
.moscow_red_dark {
  color: #870000 !important;
}
.moscow_red_dark_bg {
  background-color: #870000 !important;
}
.mustard_yellow {
  color: #daa038 !important;
}
.mustard_yellow_bg {
  background-color: #daa038 !important;
}
.kelly_green {
  color: #36a64f !important;
}
.kelly_green_dark {
  color: #257337 !important;
}
.kelly_green_bg {
  background-color: #36a64f !important;
}
.seafoam_green {
  color: #2ab27b !important;
}
.seafoam_green_bg {
  background-color: #2ab27b !important;
}
.star_yellow {
  color: #ffcc00 !important;
}
.star_yellow_bg {
  background-color: #ffcc00 !important;
}
.highlight_yellow_bg {
  background-color: #fffce0 !important;
}
.dropbox_blue {
  color: #007ee5 !important;
}
.dropbox_blue_bg {
  background-color: #007ee5 !important;
}
.twitter_blue {
  color: #55acee !important;
}
.twitter_blue_bg {
  background-color: #55acee !important;
}
.warm_white {
  color: #fbfaf8 !important;
}
.warm_white_bg {
  background-color: #fbfaf8 !important;
}
.cloud_white {
  color: #f2f2f5 !important;
}
.cloud_white_bg {
  background-color: #f2f2f5 !important;
}
body {
  text-rendering: optimizelegibility;
  /**
   * Let Firefox on OSX use greyscale anti-aliased font smoothing,
   * making fonts "thinner" and closer to Safari's rendering.
   *
   * Safari only gets selective font rendering tweaks in this
   * regard, i.e., large white header type on a dark background.
   *
   * This feature is somewhat contentious, to be used carefully.
   * https://bugzilla.mozilla.org/show_bug.cgi?id=857142
   */

  -moz-osx-font-smoothing: grayscale;
}
/* Headings */
h1,
h2,
h3,
h4 {
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  color: #555459;
  -webkit-font-smoothing: antialiased;
  margin: 0 0 1rem 0;
}
h1 {
  font-size: 1.8rem;
  line-height: 2.3rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.5rem;
  line-height: 2rem;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
h4 {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
}
h5 {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}
/* Body Text */
p {
  margin: 0 0 1rem 0;
}
p.heading {
  font-size: 2rem;
  line-height: 2.75rem;
  margin: 2rem auto 2.5rem;
  max-width: 85%;
  font-weight: 300;
}
p.emphasized {
  font-size: 1.2rem;
  line-height: 1.5rem;
}
p.large_text {
  font-size: 1.4rem;
  line-height: 1.8rem;
}
p.small_text {
  font-size: .8rem;
  line-height: 1rem;
}
/* Linked Headings */
h1 a,
h1 a:link,
h1 a:visited,
h1 a:hover,
h1 a:active {
  color: #555459;
}
/* Links */
a,
a:link,
a:visited {
  color: #2a80b9;
}
a:hover,
a:active,
a:focus {
  color: #439fe0;
}
/* Lists */
li {
  line-height: 1.5rem;
  margin: 0;
}
ul.no_bullets {
  margin: 0 0 2rem 0;
}
ul.no_bullets li {
  list-style-type: none;
  line-height: 1.25rem;
  padding: 0;
}
/* Code */
code {
  font-size: 0.72rem;
  white-space: normal;
  /* Override white-space: nowrap; in bootstrap.css */

  color: #c25;
  padding: 1px 3px;
}
pre {
  background: #fbfaf8;
  padding: 0.5rem;
  word-break: normal;
  /* Override word-break: break-all; in bootstrap.css */

}
pre.special_formatting {
  margin: .5rem 0px .2rem 0px;
  font-size: 0.75rem;
  line-height: 1.15rem;
}
div.special_formatting_quote {
  margin: .25rem 0;
}
/* Bullets: Stewart likes 'em soft and subtle */
.bullet {
  color: #DDD;
}
/* Blockquotes */
blockquote {
  margin: 0 0 0.5rem 1rem;
  padding: 0;
  border: none;
}
/* Horizontal Rules */
hr {
  border-top: 1px solid #DDD;
  border-left: 0;
  border-right: 0;
}


* {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
    box-sizing: border-box;
}
.print_only,
.print_only_inline {
  display: none;
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.clear-left {
  clear: left;
}
.clear-right {
  clear: right;
}
.clear-both {
  clear: both;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline !important;
}
.align-left {
  text-align: left !important;
}
.align-center {
  text-align: center !important;
}
.align-right {
  text-align: right !important;
}
.align_top {
  vertical-align: top !important;
}
.align_middle {
  vertical-align: middle !important;
}
.align_bottom {
  vertical-align: bottom !important;
}
.offscreen {
  position: absolute;
  left: -10000px;
  top: -10000px;
}
.normal {
  font-weight: normal !important;
}
.black {
  font-weight: 900;
}
.bold {
  font-weight: 700;
}
.medium {
  font-weight: 500;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.no_underline,
.no_underline:hover {
  text-decoration: none;
}
.full_width {
  width: 100% !important;
  max-width: 100% !important;
}
.half_width {
  width: 50% !important;
  max-width: 50% !important;
  margin-left: auto;
  margin-right: auto;
}
.no_min_width {
  min-width: 0 !important;
}
.no_min_height {
  min-height: 0 !important;
}
.auto_width {
  width: auto !important;
}
.full-height {
  overflow-y: auto;
}
/* Apply to any element to enable vertical scrolling - assumes JS to set height dynamically */
.cursor_pointer {
  cursor: pointer;
}
.tiny {
  font-size: 0.7rem;
}
.centered {
  text-align: center;
}
.mini {
  font-size: 0.8rem;
  line-height: 1.2rem;
  color: #666;
}
a.mini,
a.mini:link,
a.mini:visited {
  color: #2a80b9;
}
a.mini:hover,
a.mini:active {
  color: #439fe0;
}
/* Emoji */
span.emoji {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: baseline;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 1em;
  height: 1em;
  background-size: 1em;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
/* both .emoji-outer and .emoji also get this class; any adjustments to emoji display size should be done to .emoji-sizer */
span.emoji-sizer {
  line-height: 18px;
  font-size: 22px;
  margin: -2px 0;
}
span.emoji-outer {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  height: 1em;
  width: 1em;
}
span.emoji-inner {
  display: -moz-inline-box;
  display: inline-block;
  text-indent: -9999px;
  width: 100%;
  height: 100%;
  background-size: 3000% !important;
  /* this value must be 100*(columns in the square spritesheet) */

  vertical-align: baseline;
  *vertical-align: auto;
  *zoom: 1;
}
img.emoji {
  width: 1em;
  height: 1em;
}
.no_margin {
  margin: 0 !important;
}
.no_left_margin {
  margin-left: 0 !important;
}
.no_right_margin {
  margin-right: 0 !important;
}
.no_top_margin {
  margin-top: 0 !important;
}
.no_bottom_margin {
  margin-bottom: 0 !important;
}
.small_top_margin {
  margin-top: 0.5rem !important;
}
.small_bottom_margin {
  margin-bottom: 0.5rem !important;
}
.small_left_margin {
  margin-left: 0.5rem !important;
}
.small_right_margin {
  margin-right: 0.5rem !important;
}
.tiny_top_margin {
  margin-top: 0.1rem !important;
}
.tiny_left_margin {
  margin-left: 0.1rem !important;
}
.tiny_right_margin {
  margin-right: 0.1rem !important;
}
.tiny_bottom_margin {
  margin-bottom: 0.1rem !important;
}
.top_margin {
  margin-top: 1rem !important;
}
.bottom_margin {
  margin-bottom: 1rem !important;
}
.left_margin {
  margin-left: 1rem !important;
}
.right_margin {
  margin-right: 1rem !important;
}
.large_top_margin {
  margin-top: 2rem !important;
}
.large_bottom_margin {
  margin-bottom: 2rem !important;
}
.large_left_margin {
  margin-left: 2rem !important;
}
.large_right_margin {
  margin-right: 2rem !important;
}
.margin_auto {
  margin: auto;
}
.no_padding {
  padding: 0 !important;
}
.no_top_padding {
  padding-top: 0 !important;
}
.small_padding {
  padding: 0.5rem !important;
}
.normal_padding {
  padding: 1rem !important;
}
.large_padding {
  padding: 2rem !important;
}
.top_padding {
  padding-top: 1rem !important;
}
.bottom_padding {
  padding-bottom: 1rem !important;
}
.left_padding {
  padding-left: 1rem !important;
}
.right_padding {
  padding-right: 1rem !important;
}
.small_top_padding {
  padding-top: 0.5rem !important;
}
.small_bottom_padding {
  padding-bottom: 0.5rem !important;
}
.small_left_padding {
  padding-left: 0.5rem !important;
}
.small_right_padding {
  padding-right: 0.5rem !important;
}
.large_top_padding {
  padding-top: 2rem !important;
}
.large_bottom_padding {
  padding-bottom: 2rem !important;
}
.large_left_padding {
  padding-left: 2rem !important;
}
.large_right_padding {
  padding-right: 2rem !important;
}
.lowercase {
  text-transform: lowercase;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.break_word {
  word-wrap: break-word;
}
.no_wrap {
  white-space: nowrap;
}
.code_wrap {
  white-space: pre;
  word-wrap: break-word;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
/* Offset named anchors from the fixed header */
a[name] {
  display: block;
  position: relative;
  top: -92px;
  visibility: hidden;
}
/* Apply text-overflow: ellipsis; behaviour */
.overflow-ellipsis {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/* Make cursor a pointer for <a> without href. Note: not compatible with IE8 */
a:not([href]) {
  cursor: pointer;
}
.copy_only,
.copyonly {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: baseline;
  *vertical-align: auto;
  *zoom: 0;
  *display: inline;
  width: 1;
  height: 0;
  background-size: 0;
  background-repeat: no-repeat;
  text-indent: -9999px;
  font-size: 0;
  float: left;
  text-rendering: auto;
}
/* http://www.karlhorky.com/2012/06/cross-browser-image-grayscale-with-css.html */
img.grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  /* Firefox 10+ */

  filter: gray;
  /* IE6-9 */

  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */

}
/* Font Awesome Overrides */
.fa-spin {
  -webkit-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
