@charset "UTF-8";
/*
 * Gridism
 * A simple, responsive, and handy CSS grid by @cobyism
 * https://github.com/cobyism/gridism
 */
/* Preserve some sanity */
.grid,
.unit {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Set up some rules to govern the grid */
.grid {
  display: block;
  clear: both;
}

.grid .unit {
  float: left;
  width: 100%;
  padding: 10px;
}

/* This ensures the outer gutters are equal to the (doubled) inner gutters. */
.grid .unit:first-child {
  padding-left: 20px;
}

.grid .unit:last-child {
  padding-right: 20px;
}

/* Nested grids already have padding though, so let's nuke it */
.unit .unit:first-child {
  padding-left: 0;
}

.unit .unit:last-child {
  padding-right: 0;
}

.unit .grid:first-child > .unit {
  padding-top: 0;
}

.unit .grid:last-child > .unit {
  padding-bottom: 0;
}

/* Let people nuke the gutters/padding completely in a couple of ways */
.no-gutters .unit,
.unit.no-gutters {
  padding: 0 !important;
}

/* Wrapping at a maximum width is optional */
.wrap .grid,
.grid.wrap {
  max-width: 978px;
  margin: 0 auto;
}

/* Width classes also have shorthand versions numbered as fractions
 * For example: for a grid unit 1/3 (one third) of the parent width,
 * simply apply class="w-1-3" to the element. */
.grid .whole, .grid .w-1-1 {
  width: 100%;
}

.grid .half, .grid .w-1-2 {
  width: 50%;
}

.grid .one-third, .grid .w-1-3 {
  width: 33.3332%;
}

.grid .two-thirds, .grid .w-2-3 {
  width: 66.6665%;
}

.grid .one-quarter,
.grid .one-fourth, .grid .w-1-4 {
  width: 25%;
}

.grid .three-quarters,
.grid .three-fourths, .grid .w-3-4 {
  width: 75%;
}

.grid .one-fifth, .grid .w-1-5 {
  width: 20%;
}

.grid .two-fifths, .grid .w-2-5 {
  width: 40%;
}

.grid .three-fifths, .grid .w-3-5 {
  width: 60%;
}

.grid .four-fifths, .grid .w-4-5 {
  width: 80%;
}

.grid .golden-small, .grid .w-g-s {
  width: 38.2716%;
} /* Golden section: smaller piece */
.grid .golden-large, .grid .w-g-l {
  width: 61.7283%;
} /* Golden section: larger piece */
/* Clearfix after every .grid */
.grid {
  zoom: 1;
}

.grid:before, .grid:after {
  display: table;
  content: "";
  line-height: 0;
}

.grid:after {
  clear: both;
}

/* Utility classes */
.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

/* A property for a better rendering of images in units: in
   this way bigger pictures are just resized if the unit
   becomes smaller */
.unit img {
  max-width: 100%;
}

/* Responsive Stuff */
@media screen and (max-width: 600px) {
  /* Stack anything that isn't full-width on smaller screens
     and doesn't provide the no-stacking-on-mobiles class */
  .grid:not(.no-stacking-on-mobiles) > .unit {
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .unit .grid .unit {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* Sometimes, you just want to be different on small screens */
  .center-on-mobiles {
    text-align: center !important;
  }
  .hide-on-mobiles {
    display: none !important;
  }
}
/* Expand the wrap a bit further on larger screens */
@media screen and (min-width: 1180px) {
  .wider .grid,
  .grid.wider {
    max-width: 1180px;
    margin: 0 auto;
  }
}
/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 100%/1.5 Inter, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #f5f5f5;
  background-color: #323232;
  -webkit-text-size-adjust: 100%;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, ul, ol, dl {
  margin-bottom: 15px;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 87.5%;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/**
 * Links
 */
a {
  color: rgb(135, 195, 62);
  text-decoration: none;
  font-weight: 400;
}
a:visited {
  color: rgb(135, 195, 62);
}
a:hover {
  color: rgb(135, 195, 62);
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 18px;
  /*
  letter-spacing: -1px;
  font-style: italic;
     */
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
code.highlighter-rouge {
  font-size: 15px;
  border-radius: 0.5em;
  background-color: #151515;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(1500px - (30px * 2));
  max-width: calc(1500px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(1500px - (30px));
    max-width: calc(1500px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Clearfix
 */
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.icon > svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

/* Header */
header h1, header nav {
  display: inline-block;
}

nav ul {
  padding: 0;
  margin: 0;
}
nav li {
  display: inline-block;
}

.main-nav, .mobile-nav {
  margin-top: 15px;
  text-align: right;
}
.main-nav li a, .mobile-nav li a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid transparent;
  color: #222;
  font-weight: 900;
  font-size: 14px;
  padding: 0.5em 0.5em;
}
.main-nav li a:hover, .mobile-nav li a:hover {
  background-color: rgba(100, 100, 100, 0.7);
}
.main-nav li.current a, .mobile-nav li.current a {
  background-color: rgb(57, 98, 201);
  color: white;
}
.main-nav input[type=search], .mobile-nav input[type=search] {
  appearance: none;
  -webkit-appearance: none;
  font-size: 1.2em;
  outline: none;
  padding: 0.25em;
  border: 0;
  margin-top: 0.75em;
  border-radius: 0.25em;
}

.mobile-nav {
  margin-top: 0;
  padding-top: 10px;
  text-align: center;
}
.mobile-nav ul {
  float: none;
}
.mobile-nav li {
  margin-right: 5px;
  margin-bottom: 0.6em;
}

.contact-list,
.social-media-list,
.extra-links {
  list-style: none;
  margin-left: 0;
}
.contact-list a, .contact-list a:link, .contact-list a:visited,
.social-media-list a,
.social-media-list a:link,
.social-media-list a:visited,
.extra-links a,
.extra-links a:link,
.extra-links a:visited {
  text-decoration: underline;
  font-weight: 800;
}

/**
 * Page content
 */
.post-meta {
  font-size: 87.5%;
  color: #828282;
}

.post-link {
  display: block;
  font-size: 24px;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 10px;
}

.post-title {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}
.post-title a {
  color: #000;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 36px;
  }
}

.post-content {
  margin-bottom: 30px;
}
.post-content h1 {
  margin-bottom: 5px;
}
.post-content h2 {
  font-size: 32px;
}
@media screen and (max-width: 800px) {
  .post-content h2 {
    font-size: 28px;
  }
}
.post-content h3 {
  font-size: 26px;
}
@media screen and (max-width: 800px) {
  .post-content h3 {
    font-size: 22px;
  }
}
.post-content h4 {
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  .post-content h4 {
    font-size: 18px;
  }
}

.show-on-mobiles {
  display: none;
}

@media screen and (max-width: 600px) {
  .show-on-mobiles {
    display: block !important;
  }
  a .show-on-mobiles {
    display: inline !important;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    text-align: right;
  }
}
@media (max-width: 830px) {
  .main-nav .show-on-mobiles {
    display: inline;
  }
  .main-nav .hide-on-mobiles {
    display: none;
  }
}
article.post {
  margin-top: 10px;
}

/* Helper class taken from Bootstrap.
	 Hides an element to all devices except screen readers.
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

p.rss-subscribe {
  float: right;
  font-size: 16px;
}

html {
  background-color: rgb(51, 51, 51);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1 {
  line-height: 1.2em;
}

abbr {
  border-bottom: 1px dotted #6f6f6f;
  cursor: help;
}

sup {
  margin-left: 2px;
}
sup:before {
  content: "[";
}
sup:after {
  content: "]";
}

svg.icon {
  height: 2em;
  width: 2em;
  fill: currentColor;
  vertical-align: middle;
}

div.cerb-screenshot {
  position: relative;
  margin-bottom: 5px;
}
div.cerb-screenshot img {
  border: 1px solid rgb(20, 20, 20);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}
div.cerb-screenshot img.cerb-overlay {
  position: absolute;
  top: 0;
  left: 0;
}
div.cerb-screenshot img.no-border {
  border: 0;
}
div.cerb-screenshot video {
  max-width: 100%;
  height: auto;
}

ul.cerb-convo-bubbles {
  list-style: none;
  margin: 0;
}
ul.cerb-convo-bubbles > li {
  background-color: rgb(230, 230, 230);
  padding: 5px 10px;
  margin: 5px 0px;
  border-radius: 10px 10px 10px 0px;
}

.cerb-hidden {
  display: none;
}

.cerb-indented {
  margin-left: 20px !important;
}

.cerb-text-center {
  text-align: center;
}

header.top-navigation {
  background-color: rgb(32, 32, 32);
}
header.top-navigation a {
  color: rgb(235, 235, 235);
}

.jumbotron {
  text-shadow: 0 0 2px rgb(50, 50, 50);
  text-align: left;
  padding: 10px 0 10px 0;
  background-color: rgb(57, 98, 201);
  color: white;
}
.jumbotron p.jumbotron-breadcrumbs {
  display: inline-block;
}
.jumbotron p.jumbotron-breadcrumbs a {
  color: white;
}
.jumbotron.jumbotron-medium h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
}
.jumbotron.jumbotron-center {
  text-align: center;
}
.jumbotron h1 {
  display: block;
  font-size: 36px;
  margin: 0;
  padding: 0;
}
.jumbotron p {
  font-size: 24px;
  margin: 0;
  padding: 0;
}

div.page-content {
  flex-grow: 1;
  padding-bottom: 20px;
}
div.page-content article h1 {
  font-size: 32px;
  font-weight: 800;
}
div.page-content article h2 {
  font-size: 28px;
  font-weight: 500;
  border-bottom: 1px solid #6f6f6f;
}
div.page-content article h3 {
  font-size: 22px;
  font-weight: 600;
}
div.page-content article h4 {
  font-size: 16px;
  font-weight: 600;
}

.blog {
  margin-top: 20px;
}
.blog article h1 {
  margin-top: 20px;
  margin-bottom: 15px;
}
.blog article h1.post-title {
  margin: 0;
}
.blog article h2 {
  margin-bottom: 5px;
}
.blog ul#markdown-toc > li > a {
  font-weight: bold;
}
.blog div.screenshot {
  margin-left: 20px;
  margin-bottom: 10px;
  border: 1px solid rgb(220, 220, 220);
  display: inline-block;
}
.blog div.screenshot.no-border {
  border: 0;
}
.blog ul.blog-post-group {
  list-style: disc;
  margin-bottom: 20px;
}
.blog ul.blog-post-group li {
  margin-bottom: 10px;
}
.blog ul.blog-post-group li a {
  font-weight: bold;
}

.home div.separator {
  clear: both;
  text-align: center;
}
.home div.separator:after {
  content: "";
  display: inline-block;
  position: relative;
  top: -14px;
  border-bottom: 1px dashed lightgray;
  width: 90%;
  color: #8c8b8b;
  font-size: 18px;
}

.features {
  display: flex;
  flex-flow: row wrap;
}
.features .feature {
  margin: 0 0 20px 0;
  flex: 2 2 100%;
}
.features .feature > div {
  padding: 1em;
}
.features .feature.half {
  flex: 1 1 50%;
}
.features .feature h1 {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 2.7em;
}
.features .feature h2 {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 1.8em;
}
.features .feature p {
  padding: 1em;
  margin-bottom: 0;
}
.features .feature ul {
  text-align: left;
  list-style: circle;
}
.features .feature .screenshot {
  width: 100%;
  height: auto;
}

#cerb-testimonials {
  color: rgb(182, 182, 182);
}
#cerb-testimonials .client-logo {
  float: left;
  margin: 0 1em;
}
#cerb-testimonials blockquote {
  border-left: 4px solid rgb(182, 182, 182);
}

#cerb-slides .cerb-slides-nav {
  margin-bottom: 10px;
  background-color: rgb(230, 230, 230);
  padding: 5px !important;
  overflow: hidden;
}
#cerb-slides .cerb-slides-nav .slide {
  color: rgb(120, 120, 120);
  padding: 0;
  font: inherit;
  cursor: pointer;
  margin: 0 5px;
  white-space: nowrap;
}
#cerb-slides .cerb-slides-nav .slide:hover {
  color: black;
}
#cerb-slides .cerb-slides-nav .slide.selected {
  color: rgb(255, 128, 0);
  font-weight: bold;
}
#cerb-slides .cerb-slides-nav .slide.section {
  color: black;
  font-size: 1.2em;
  font-weight: bold;
}
#cerb-slides .cerb-slides-nav .slide.section.selected {
  color: black;
  font-weight: bold;
}
#cerb-slides .cerb-slides-nav .prev {
  color: rgb(100, 100, 100);
  font-weight: bold;
  white-space: nowrap;
}
#cerb-slides .cerb-slides-nav .next {
  color: rgb(100, 100, 100);
  font-weight: bold;
  white-space: nowrap;
}
#cerb-slides .feature .screenshot img {
  border: 2px solid rgb(225, 225, 225);
}
#cerb-slides .feature img {
  cursor: pointer;
}
#cerb-slides .feature.selected {
  display: block;
}

.solutions .content, .docs .content, .integration .content, .post .content {
  padding: 0;
}
.solutions article h1:not(:first-of-type), .docs article h1:not(:first-of-type), .integration article h1:not(:first-of-type), .post article h1:not(:first-of-type) {
  margin-top: 50px;
}
.solutions article h2:not(:first-of-type), .docs article h2:not(:first-of-type), .integration article h2:not(:first-of-type), .post article h2:not(:first-of-type) {
  margin-top: 25px;
}
.solutions article h3:not(:first-of-type), .docs article h3:not(:first-of-type), .integration article h3:not(:first-of-type), .post article h3:not(:first-of-type) {
  margin-top: 25px;
}
.solutions article table, .docs article table, .integration article table, .post article table {
  border: 1px solid rgb(135, 135, 135);
  border-spacing: 0;
  border-collapse: collapse;
  padding: 0px;
  margin-bottom: 1em;
}
.solutions article table th, .docs article table th, .integration article table th, .post article table th {
  background-color: rgb(79, 79, 79);
  border: 1px solid rgb(135, 135, 135);
  padding: 5px;
  text-align: left;
}
.solutions article table td, .docs article table td, .integration article table td, .post article table td {
  padding: 5px;
  border: 1px solid rgb(135, 135, 135);
}
.solutions aside h4, .docs aside h4, .integration aside h4, .post aside h4 {
  margin: 0 0 5px 0;
  padding: 0;
}
.solutions aside h4 a, .docs aside h4 a, .integration aside h4 a, .post aside h4 a {
  font-weight: bold;
  color: #bfbfbf;
}
.solutions aside ul, .docs aside ul, .integration aside ul, .post aside ul {
  margin-bottom: 5px;
}
.solutions aside li, .docs aside li, .integration aside li, .post aside li {
  list-style: none;
  padding: 0;
  margin: 0 0 0 -20px;
  font-size: 0.85em;
}
.solutions aside li.current, .docs aside li.current, .integration aside li.current, .post aside li.current {
  font-weight: bold;
  text-decoration: none;
}
.solutions aside li.current:before, .docs aside li.current:before, .integration aside li.current:before, .post aside li.current:before {
  content: "";
  opacity: 0.5;
  margin-left: -10px;
  border-left: 2px solid #F40;
  padding-left: 8px;
}
.solutions aside li.current a, .docs aside li.current a, .integration aside li.current a, .post aside li.current a {
  color: #F70;
}
.solutions aside li a, .docs aside li a, .integration aside li a, .post aside li a {
  color: #b0b0b0;
}

.integrations {
  margin-top: 10px;
}
.integrations h1 {
  margin-top: 20px;
  margin-bottom: 15px;
}
.integrations h2 {
  border: 0 !important;
  font-size: 22px !important;
  margin-bottom: 5px;
}
.integrations ul.articles {
  list-style: none;
  margin-left: 0;
}
.integrations ul.articles > li {
  padding: 10px;
}
.integrations ul.articles > li > a {
  font-weight: bold;
  font-size: 1.2em;
  color: #f5f5f5;
}
.integrations ul.articles > li:nth-child(odd) {
  background-color: rgb(69, 69, 69);
}
.integrations div.cerb-integration {
  text-align: center;
  font-weight: 300;
  margin-bottom: 25px;
}
.integrations div.cerb-integration a {
  font-weight: bold;
  font-size: 120%;
}

section.solutions article, section.integration article {
  margin-top: 15px;
}
section.solutions article h1 a, section.integration article h1 a {
  color: #000;
}
section.solutions aside ul, section.integration aside ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
  font-size: 0.85em;
}
section.solutions aside ul li, section.integration aside ul li {
  font-size: 14px;
}
section.solutions aside ul li a, section.integration aside ul li a {
  color: #888;
}
section.solutions aside ul li.current a, section.integration aside ul li.current a {
  color: #ff7700;
  font-weight: bold;
}

div.pricing h1 a {
  color: black;
  text-decoration: none;
}
div.pricing h1 a:hover {
  text-decoration: underline;
}

.section-nav {
  padding-top: 20px;
  position: relative;
  margin: 0px 0px 50px 0px;
}
.section-nav a,
.section-nav span {
  color: #F5F5F5;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  padding: 8px 12px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  /*border: 1px solid #333;*/
  background-color: #636363;
}
.section-nav a:hover {
  color: #fff;
  background-color: #888;
}
.section-nav .disabled {
  display: none;
  cursor: default;
}

.youtube-video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.youtube-video-container::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  line-height: 1.4em;
  color: rgb(255, 255, 255);
  text-shadow: rgb(32, 32, 32) 0 1px 0;
  padding: 15px 0;
  background-color: rgb(28, 27, 28);
  width: 100%;
}
footer b {
  color: rgb(110, 165, 255);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25em;
  margin-left: -0.2em;
}
footer a, footer a:link, footer a:visited {
  color: rgb(255, 255, 255);
}

table.matrix {
  text-align: center;
}
table.matrix caption {
  font-weight: bold;
  font-size: 110%;
  white-space: nowrap;
}
table.matrix th, table.matrix td {
  padding: 3px 10px;
}
table.matrix tr th:first-child, table.matrix tr td:first-child {
  text-align: right;
}

.cerb-feature-comparison {
  width: 100%;
  border-spacing: 0;
}
.cerb-feature-comparison > tbody > tr > td {
  vertical-align: top;
  width: 50%;
}
.cerb-feature-comparison h1 a {
  font-weight: bold;
}
.cerb-feature-comparison div.price {
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 10px;
}

table.cerb-pricing-matrix {
  width: 100%;
  border-spacing: 0;
}
table.cerb-pricing-matrix th {
  width: 25%;
  font-size: 120%;
  font-weight: bold;
}
table.cerb-pricing-matrix th a {
  text-decoration: underline;
  cursor: pointer;
}
table.cerb-pricing-matrix tbody.matrix td {
  text-align: center;
}
table.cerb-pricing-matrix tbody.matrix td:first-child {
  text-align: right;
}
table.cerb-pricing-matrix tbody.matrix td span.yes:after {
  content: "√";
}
table.cerb-pricing-matrix tbody.matrix td span.no:after {
  content: "—";
  opacity: 0.4;
}
table.cerb-pricing-matrix tbody.matrix tr:nth-child(even) td {
  background-color: #fff;
}
table.cerb-pricing-matrix tbody.matrix tr:nth-child(odd) td {
  background-color: rgb(69, 69, 69);
}
table.cerb-pricing-matrix tbody.section td {
  text-align: left;
  font-weight: bold;
  font-size: 110%;
  padding: 25px 0px 10px 0px;
}

form.cerb-form {
  border: 1px solid rgb(230, 230, 230);
  padding: 10px;
  border-radius: 8px;
}
form.cerb-form div.status {
  display: inline-block;
}
form.cerb-form div.status div.success {
  display: inline-block;
  padding: 10px;
  color: rgb(121, 159, 68);
  background-color: rgb(223, 245, 201);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
form.cerb-form div.status div.warning {
  display: inline-block;
  padding: 10px;
  color: rgb(151, 99, 32);
  background-color: rgb(252, 240, 187);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
form.cerb-form div.status div.error {
  display: inline-block;
  padding: 10px;
  color: rgb(150, 0, 0);
  background-color: #ffc0c0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
form.cerb-form .dim {
  color: rgb(150, 150, 150);
}
form.cerb-form fieldset {
  border: none;
}
form.cerb-form fieldset legend {
  font-size: 1.8em;
  font-weight: bold;
  color: rgb(110, 160, 50);
}
form.cerb-form fieldset > label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
form.cerb-form input[type=text],
form.cerb-form input[type=date],
form.cerb-form input[type=datetime],
form.cerb-form input[type=email],
form.cerb-form input[type=number],
form.cerb-form input[type=search],
form.cerb-form input[type=time],
form.cerb-form input[type=url],
form.cerb-form textarea,
form.cerb-form select {
  border: 1px solid rgb(150, 150, 150);
  border-radius: 4px;
  font-size: 16px;
  margin: 0 0 10px 0;
  outline: 0;
  padding: 7px;
  width: 100%;
  box-sizing: border-box;
  background-color: #f5f5f5;
  color: #222;
  font-weight: 500;
}
form.cerb-form input[type=text].form-inline,
form.cerb-form input[type=date].form-inline,
form.cerb-form input[type=datetime].form-inline,
form.cerb-form input[type=email].form-inline,
form.cerb-form input[type=number].form-inline,
form.cerb-form input[type=search].form-inline,
form.cerb-form input[type=time].form-inline,
form.cerb-form input[type=url].form-inline,
form.cerb-form textarea.form-inline,
form.cerb-form select.form-inline {
  width: inherit;
}
form.cerb-form input[type=text]:focus,
form.cerb-form input[type=date]:focus,
form.cerb-form input[type=datetime]:focus,
form.cerb-form input[type=email]:focus,
form.cerb-form input[type=number]:focus,
form.cerb-form input[type=search]:focus,
form.cerb-form input[type=time]:focus,
form.cerb-form input[type=url]:focus,
form.cerb-form textarea:focus,
form.cerb-form select:focus {
  background: #ebebeb;
}
form.cerb-form select {
  -webkit-appearance: menulist-button;
  height: 35px;
}
form.cerb-form input[type=submit],
form.cerb-form input[type=button] {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  color: #fff;
  background: rgb(110, 160, 50);
  font-size: 1.3em;
  text-align: left;
  font-style: normal;
  border: 0;
  margin-bottom: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
form.cerb-form input[type=submit]:hover,
form.cerb-form input[type=button]:hover {
  background: rgb(123.3571428571, 179.4285714286, 56.0714285714);
}

div.cerb-box {
  padding: 10px 20px;
  margin: 10px 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
div.cerb-box p {
  margin: 0;
  padding: 0;
}
div.cerb-box.note {
  color: rgb(235, 155, 53);
  border: 1px solid rgb(235, 155, 53);
  background-color: rgb(43, 41, 29);
}
div.cerb-box.note p:before {
  content: "Note: ";
  font-weight: bold;
  font-size: 120%;
}
div.cerb-box.note a {
  color: #ffb84d;
}
div.cerb-box.warning {
  color: #ec3e53;
  border: 1px solid #ec3e53;
  background-color: #201e1e;
}
div.cerb-box.warning p:before {
  content: "Warning: ";
  font-weight: bold;
  font-size: 120%;
}
div.cerb-box.warning a {
  color: #ed6c7e;
  text-decoration: underline;
}
div.cerb-box.geek-out {
  color: rgb(60, 183, 255);
  border: 1px solid rgb(60, 183, 255);
  background-color: rgb(38, 52, 60);
}
div.cerb-box.geek-out p:before {
  content: "Geek out: ";
  font-weight: bold;
  font-size: 120%;
}
div.cerb-box.geek-out a {
  color: rgb(146, 202, 241);
  text-decoration: underline;
}

a.cerb-button {
  display: inline-block;
  text-align: center;
  line-height: 1.1em;
}

button.cerb-button, a.cerb-button {
  text-decoration: underline;
  font-size: 18px;
  font-weight: bold;
  border: 0;
  background-color: rgb(60, 130, 230);
  cursor: pointer;
  margin: 10px;
  padding: 12px 25px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
}
button.cerb-button:hover, a.cerb-button:hover {
  background-position: right center; /* change the direction of the change here */
  background-color: rgb(27.1590909091, 103.2045454545, 211.8409090909);
  text-decoration: underline;
}

span.client-logo {
  display: inline-block;
  background: url(/assets/cerb-clients.png?v=20250409);
  width: 175px;
  height: 95px;
}

span.client-1password-com {
  background-position: 0px 0px;
}

span.client-eff-org {
  background-position: -175px 0px;
}

span.client-advance-net {
  background-position: -350px 0px;
}

span.client-flexibits-com {
  background-position: -525px 0px;
}

span.client-conair-com {
  background-position: -700px 0px;
}

span.client-lockheedmartin-com {
  background-position: -875px 0px;
}

span.client-fedpol-be {
  background-position: 0px -95px;
}

span.client-3cisd-com {
  background-position: -175px -95px;
}

span.client-99designs-com {
  background-position: -350px -95px;
}

span.client-uci-edu {
  background-position: -525px -95px;
}

span.client-cornell-edu {
  background-position: -700px -95px;
}

span.client-culturedcode-com {
  background-position: -875px -95px;
}

span.client-appcelerator-com {
  background-position: 0px -190px;
}

span.client-netdna-com {
  background-position: -175px -190px;
}

span.client-tlgbrands-com {
  background-position: -350px -190px;
}

span.client-netratings-com {
  background-position: -525px -190px;
}

span.client-london-ac-uk {
  background-position: -700px -190px;
}

span.client-sitepoint-com {
  background-position: -875px -190px;
}

span.client-clarusmarketing-com {
  background-position: 0px -285px;
}

span.client-cappies-com {
  background-position: -175px -285px;
}

span.client-cisco-com {
  background-position: -350px -285px;
}

span.client-umma-umich-edu {
  background-position: -525px -285px;
}

span.client-tiauto-com {
  background-position: -700px -285px;
}

span.client-nublue-co-uk {
  background-position: -875px -285px;
}

span.client-rhodes-edu {
  background-position: 0px -380px;
}

span.client-sevencorners-com {
  background-position: -175px -380px;
}

span.client-dekart-com {
  background-position: -350px -380px;
}

span.client-skywest-com-au {
  background-position: -525px -380px;
}

span.client-france-com {
  background-position: -700px -380px;
}

span.client-tradingtrainer-com {
  background-position: -875px -380px;
}

span.client-dedicatednow-com {
  background-position: 0px -475px;
}

span.client-camlaw-rutgers-edu {
  background-position: -175px -475px;
}

span.client-smm-org {
  background-position: -350px -475px;
}

span.client-3rdsense-com {
  background-position: -525px -475px;
}

span.client-247customer-com {
  background-position: -700px -475px;
}

span.client-firestarsoftware-com {
  background-position: -875px -475px;
}

span.client-castandcrew-com {
  background-position: 0px -570px;
}

span.client-hyclogistics-com {
  background-position: -175px -570px;
}

span.client-sourcefire-com {
  background-position: -350px -570px;
}

span.client-diyhosting-com {
  background-position: -525px -570px;
}

span.client-cardlogicgroup-com {
  background-position: -700px -570px;
}

span.client-watterott-com {
  background-position: -875px -570px;
}

span.client-thinkgeek-com {
  background-position: 0px -665px;
}

span.client-3mediaweb-com {
  background-position: -175px -665px;
}

span.client-cloudcontrollers-com {
  background-position: -350px -665px;
}

span.client-americanbroadbandservice-com {
  background-position: -525px -665px;
}

span.client-esi-group-com {
  background-position: -700px -665px;
}

span.client-mediafly-com {
  background-position: -875px -665px;
}

span.client-popcap-com {
  background-position: 0px -760px;
}

span.client-izotope-com {
  background-position: -175px -760px;
}

span.client-nxnet-us {
  background-position: -350px -760px;
}

span.client-singularityu-org {
  background-position: -525px -760px;
}

span.client-seti-org {
  background-position: -700px -760px;
}

span.client-kiva-org {
  background-position: -875px -760px;
}

@media screen and (max-width: 750px) {
  .features .feature.half {
    flex: 2 2 100%;
  }
}
figure.highlight {
  border: 0;
  margin-bottom: 1em;
  background-color: rgb(28, 26, 30);
  padding: 1em;
  border-radius: 10px;
  position: relative;
  max-height: 50em;
  overflow: auto;
}
figure.highlight::-webkit-scrollbar {
  background-color: transparent;
  width: 10px;
  height: 10px;
  scrollbar-width: thin;
}
figure.highlight::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgb(69, 69, 69);
}
figure.highlight pre::-webkit-scrollbar {
  background-color: transparent;
  width: 10px;
  height: 10px;
  scrollbar-width: thin;
}
figure.highlight pre::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgb(69, 69, 69);
}
figure.highlight pre code {
  background-color: inherit;
  text-shadow: none;
}
figure.highlight pre code[class*=language-], figure.highlight pre pre[class*=language-] {
  text-shadow: none;
  color: rgb(245, 245, 245);
}
figure.highlight button.copy {
  opacity: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: 1px solid white;
  background: #333333;
  color: white;
}
figure.highlight:hover button.copy {
  opacity: 1;
}
figure.highlight .rouge-table {
  border: 0;
  margin-bottom: 0;
}
figure.highlight .rouge-table .gutter {
  border: 0;
  padding: 0;
  border-right: 1px solid rgb(100, 100, 100);
  vertical-align: top;
}
figure.highlight .rouge-table .gutter > pre {
  padding: 0 0.5em 0 0;
  text-align: right;
  color: rgb(120, 120, 120);
}
figure.highlight .rouge-table .code {
  border: 0;
  padding: 0;
}
figure.highlight .rouge-table .code > pre {
  padding: 0 0 0 0.75em;
}

.highlight .hll {
  background-color: rgba(80, 122, 207, 0.5);
  padding: 0.15em 0;
}

.highlight .c {
  color: #777777;
  font-style: italic;
} /* Comment */
.highlight .s {
  color: #c4d3e7;
} /* Literal.String */
.highlight .p {
  color: #e47ad7;
  font-weight: normal;
} /* Punctuation */
.highlight .k {
  color: #f1b96e;
  font-weight: normal;
} /* Keyword */
.highlight .na {
  color: #f1b96e;
  font-weight: normal;
} /* Keyword */
.highlight .pi {
  color: #f1b96e;
  font-weight: normal;
} /* Keyword */
@font-face {
  font-family: "Glyphicons Regular";
  src: url("/assets/fonts/glyphicons-regular.eot");
  src: url("/assets/fonts/glyphicons-regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/glyphicons-regular.woff2") format("woff2"), url("/assets/fonts/glyphicons-regular.woff") format("woff"), url("/assets/fonts/glyphicons-regular.ttf") format("truetype"), url("/assets/fonts/glyphicons-regular.svg#glyphiconsregular") format("svg");
}
.glyphicons {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Regular";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicons.x05 {
  font-size: 12px;
}

.glyphicons.x2 {
  font-size: 48px;
}

.glyphicons.x3 {
  font-size: 72px;
}

.glyphicons.x4 {
  font-size: 96px;
}

.glyphicons.x5 {
  font-size: 120px;
}

.glyphicons.light:before {
  color: #f2f2f2;
}

.glyphicons.drop:before {
  text-shadow: -1px 1px 3px rgba(0, 0, 0, 0.3);
}

.glyphicons.flip {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

.glyphicons.flipv {
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  filter: FlipV;
  -ms-filter: "FlipV";
}

.glyphicons.rotate90 {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.glyphicons.rotate180 {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.glyphicons.rotate270 {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.glyphicons-glass:before {
  content: "\e001";
}

.glyphicons-leaf:before {
  content: "\e002";
}

.glyphicons-dog:before {
  content: "\e003";
}

.glyphicons-user:before {
  content: "\e004";
}

.glyphicons-girl:before {
  content: "\e005";
}

.glyphicons-car:before {
  content: "\e006";
}

.glyphicons-user-add:before {
  content: "\e007";
}

.glyphicons-user-remove:before {
  content: "\e008";
}

.glyphicons-film:before {
  content: "\e009";
}

.glyphicons-magic:before {
  content: "\e010";
}

.glyphicons-envelope:before {
  content: "✉";
}

.glyphicons-camera:before {
  content: "\e011";
}

.glyphicons-heart:before {
  content: "\e013";
}

.glyphicons-beach-umbrella:before {
  content: "\e014";
}

.glyphicons-train:before {
  content: "\e015";
}

.glyphicons-print:before {
  content: "\e016";
}

.glyphicons-bin:before {
  content: "\e017";
}

.glyphicons-music:before {
  content: "\e018";
}

.glyphicons-note:before {
  content: "\e019";
}

.glyphicons-heart-empty:before {
  content: "\e020";
}

.glyphicons-home:before {
  content: "\e021";
}

.glyphicons-snowflake:before {
  content: "❄";
}

.glyphicons-fire:before {
  content: "\e023";
}

.glyphicons-magnet:before {
  content: "\e024";
}

.glyphicons-parents:before {
  content: "\e025";
}

.glyphicons-binoculars:before {
  content: "\e026";
}

.glyphicons-road:before {
  content: "\e027";
}

.glyphicons-search:before {
  content: "\e028";
}

.glyphicons-cars:before {
  content: "\e029";
}

.glyphicons-notes-2:before {
  content: "\e030";
}

.glyphicons-pencil:before {
  content: "✏";
}

.glyphicons-bus:before {
  content: "\e032";
}

.glyphicons-wifi-alt:before {
  content: "\e033";
}

.glyphicons-luggage:before {
  content: "\e034";
}

.glyphicons-old-man:before {
  content: "\e035";
}

.glyphicons-woman:before {
  content: "\e036";
}

.glyphicons-file:before {
  content: "\e037";
}

.glyphicons-coins:before {
  content: "\e038";
}

.glyphicons-airplane:before {
  content: "✈";
}

.glyphicons-notes:before {
  content: "\e040";
}

.glyphicons-stats:before {
  content: "\e041";
}

.glyphicons-charts:before {
  content: "\e042";
}

.glyphicons-pie-chart:before {
  content: "\e043";
}

.glyphicons-group:before {
  content: "\e044";
}

.glyphicons-keys:before {
  content: "\e045";
}

.glyphicons-calendar:before {
  content: "\e046";
}

.glyphicons-router:before {
  content: "\e047";
}

.glyphicons-camera-small:before {
  content: "\e048";
}

.glyphicons-star-empty:before {
  content: "\e049";
}

.glyphicons-star:before {
  content: "\e050";
}

.glyphicons-link:before {
  content: "\e051";
}

.glyphicons-eye-open:before {
  content: "\e052";
}

.glyphicons-eye-close:before {
  content: "\e053";
}

.glyphicons-alarm:before {
  content: "\e054";
}

.glyphicons-clock:before {
  content: "\e055";
}

.glyphicons-stopwatch:before {
  content: "\e056";
}

.glyphicons-projector:before {
  content: "\e057";
}

.glyphicons-history:before {
  content: "\e058";
}

.glyphicons-truck:before {
  content: "\e059";
}

.glyphicons-cargo:before {
  content: "\e060";
}

.glyphicons-compass:before {
  content: "\e061";
}

.glyphicons-keynote:before {
  content: "\e062";
}

.glyphicons-paperclip:before {
  content: "\e063";
}

.glyphicons-power:before {
  content: "\e064";
}

.glyphicons-lightbulb:before {
  content: "\e065";
}

.glyphicons-tag:before {
  content: "\e066";
}

.glyphicons-tags:before {
  content: "\e067";
}

.glyphicons-cleaning:before {
  content: "\e068";
}

.glyphicons-ruler:before {
  content: "\e069";
}

.glyphicons-gift:before {
  content: "\e070";
}

.glyphicons-umbrella:before {
  content: "☂";
}

.glyphicons-book:before {
  content: "\e072";
}

.glyphicons-bookmark:before {
  content: "\e073";
}

.glyphicons-wifi:before {
  content: "\e074";
}

.glyphicons-cup:before {
  content: "\e075";
}

.glyphicons-stroller:before {
  content: "\e076";
}

.glyphicons-headphones:before {
  content: "\e077";
}

.glyphicons-headset:before {
  content: "\e078";
}

.glyphicons-warning-sign:before {
  content: "\e079";
}

.glyphicons-signal:before {
  content: "\e080";
}

.glyphicons-retweet:before {
  content: "\e081";
}

.glyphicons-refresh:before {
  content: "\e082";
}

.glyphicons-roundabout:before {
  content: "\e083";
}

.glyphicons-random:before {
  content: "\e084";
}

.glyphicons-heat:before {
  content: "\e085";
}

.glyphicons-repeat:before {
  content: "\e086";
}

.glyphicons-display:before {
  content: "\e087";
}

.glyphicons-log-book:before {
  content: "\e088";
}

.glyphicons-address-book:before {
  content: "\e089";
}

.glyphicons-building:before {
  content: "\e090";
}

.glyphicons-eyedropper:before {
  content: "\e091";
}

.glyphicons-adjust:before {
  content: "\e092";
}

.glyphicons-tint:before {
  content: "\e093";
}

.glyphicons-crop:before {
  content: "\e094";
}

.glyphicons-vector-path-square:before {
  content: "\e095";
}

.glyphicons-vector-path-circle:before {
  content: "\e096";
}

.glyphicons-vector-path-polygon:before {
  content: "\e097";
}

.glyphicons-vector-path-line:before {
  content: "\e098";
}

.glyphicons-vector-path-curve:before {
  content: "\e099";
}

.glyphicons-vector-path-all:before {
  content: "\e100";
}

.glyphicons-font:before {
  content: "\e101";
}

.glyphicons-italic:before {
  content: "\e102";
}

.glyphicons-bold:before {
  content: "\e103";
}

.glyphicons-text-underline:before {
  content: "\e104";
}

.glyphicons-text-strike:before {
  content: "\e105";
}

.glyphicons-text-height:before {
  content: "\e106";
}

.glyphicons-text-width:before {
  content: "\e107";
}

.glyphicons-text-resize:before {
  content: "\e108";
}

.glyphicons-left-indent:before {
  content: "\e109";
}

.glyphicons-right-indent:before {
  content: "\e110";
}

.glyphicons-align-left:before {
  content: "\e111";
}

.glyphicons-align-center:before {
  content: "\e112";
}

.glyphicons-align-right:before {
  content: "\e113";
}

.glyphicons-justify:before {
  content: "\e114";
}

.glyphicons-list:before {
  content: "\e115";
}

.glyphicons-text-smaller:before {
  content: "\e116";
}

.glyphicons-text-bigger:before {
  content: "\e117";
}

.glyphicons-embed:before {
  content: "\e118";
}

.glyphicons-embed-close:before {
  content: "\e119";
}

.glyphicons-table:before {
  content: "\e120";
}

.glyphicons-message-full:before {
  content: "\e121";
}

.glyphicons-message-empty:before {
  content: "\e122";
}

.glyphicons-message-in:before {
  content: "\e123";
}

.glyphicons-message-out:before {
  content: "\e124";
}

.glyphicons-message-plus:before {
  content: "\e125";
}

.glyphicons-message-minus:before {
  content: "\e126";
}

.glyphicons-message-ban:before {
  content: "\e127";
}

.glyphicons-message-flag:before {
  content: "\e128";
}

.glyphicons-message-lock:before {
  content: "\e129";
}

.glyphicons-message-new:before {
  content: "\e130";
}

.glyphicons-inbox:before {
  content: "\e131";
}

.glyphicons-inbox-plus:before {
  content: "\e132";
}

.glyphicons-inbox-minus:before {
  content: "\e133";
}

.glyphicons-inbox-lock:before {
  content: "\e134";
}

.glyphicons-inbox-in:before {
  content: "\e135";
}

.glyphicons-inbox-out:before {
  content: "\e136";
}

.glyphicons-cogwheel:before {
  content: "\e137";
}

.glyphicons-cogwheels:before {
  content: "\e138";
}

.glyphicons-picture:before {
  content: "\e139";
}

.glyphicons-adjust-alt:before {
  content: "\e140";
}

.glyphicons-database-lock:before {
  content: "\e141";
}

.glyphicons-database-plus:before {
  content: "\e142";
}

.glyphicons-database-minus:before {
  content: "\e143";
}

.glyphicons-database-ban:before {
  content: "\e144";
}

.glyphicons-folder-open:before {
  content: "\e145";
}

.glyphicons-folder-plus:before {
  content: "\e146";
}

.glyphicons-folder-minus:before {
  content: "\e147";
}

.glyphicons-folder-lock:before {
  content: "\e148";
}

.glyphicons-folder-flag:before {
  content: "\e149";
}

.glyphicons-folder-new:before {
  content: "\e150";
}

.glyphicons-edit:before {
  content: "\e151";
}

.glyphicons-new-window:before {
  content: "\e152";
}

.glyphicons-check:before {
  content: "\e153";
}

.glyphicons-unchecked:before {
  content: "\e154";
}

.glyphicons-more-windows:before {
  content: "\e155";
}

.glyphicons-show-big-thumbnails:before {
  content: "\e156";
}

.glyphicons-show-thumbnails:before {
  content: "\e157";
}

.glyphicons-show-thumbnails-with-lines:before {
  content: "\e158";
}

.glyphicons-show-lines:before {
  content: "\e159";
}

.glyphicons-playlist:before {
  content: "\e160";
}

.glyphicons-imac:before {
  content: "\e161";
}

.glyphicons-macbook:before {
  content: "\e162";
}

.glyphicons-ipad:before {
  content: "\e163";
}

.glyphicons-iphone:before {
  content: "\e164";
}

.glyphicons-iphone-transfer:before {
  content: "\e165";
}

.glyphicons-iphone-exchange:before {
  content: "\e166";
}

.glyphicons-ipod:before {
  content: "\e167";
}

.glyphicons-ipod-shuffle:before {
  content: "\e168";
}

.glyphicons-ear-plugs:before {
  content: "\e169";
}

.glyphicons-record:before {
  content: "\e170";
}

.glyphicons-step-backward:before {
  content: "\e171";
}

.glyphicons-fast-backward:before {
  content: "\e172";
}

.glyphicons-rewind:before {
  content: "\e173";
}

.glyphicons-play:before {
  content: "\e174";
}

.glyphicons-pause:before {
  content: "\e175";
}

.glyphicons-stop:before {
  content: "\e176";
}

.glyphicons-forward:before {
  content: "\e177";
}

.glyphicons-fast-forward:before {
  content: "\e178";
}

.glyphicons-step-forward:before {
  content: "\e179";
}

.glyphicons-eject:before {
  content: "\e180";
}

.glyphicons-facetime-video:before {
  content: "\e181";
}

.glyphicons-download-alt:before {
  content: "\e182";
}

.glyphicons-mute:before {
  content: "\e183";
}

.glyphicons-volume-down:before {
  content: "\e184";
}

.glyphicons-volume-up:before {
  content: "\e185";
}

.glyphicons-screenshot:before {
  content: "\e186";
}

.glyphicons-move:before {
  content: "\e187";
}

.glyphicons-more:before {
  content: "\e188";
}

.glyphicons-brightness-reduce:before {
  content: "\e189";
}

.glyphicons-brightness-increase:before {
  content: "\e190";
}

.glyphicons-circle-plus:before {
  content: "\e191";
}

.glyphicons-circle-minus:before {
  content: "\e192";
}

.glyphicons-circle-remove:before {
  content: "\e193";
}

.glyphicons-circle-ok:before {
  content: "\e194";
}

.glyphicons-circle-question-mark:before {
  content: "\e195";
}

.glyphicons-circle-info:before {
  content: "\e196";
}

.glyphicons-circle-exclamation-mark:before {
  content: "\e197";
}

.glyphicons-remove:before {
  content: "\e198";
}

.glyphicons-ok:before {
  content: "\e199";
}

.glyphicons-ban:before {
  content: "\e200";
}

.glyphicons-download:before {
  content: "\e201";
}

.glyphicons-upload:before {
  content: "\e202";
}

.glyphicons-shopping-cart:before {
  content: "\e203";
}

.glyphicons-lock:before {
  content: "\e204";
}

.glyphicons-unlock:before {
  content: "\e205";
}

.glyphicons-electricity:before {
  content: "\e206";
}

.glyphicons-ok-2:before {
  content: "\e207";
}

.glyphicons-remove-2:before {
  content: "\e208";
}

.glyphicons-cart-out:before {
  content: "\e209";
}

.glyphicons-cart-in:before {
  content: "\e210";
}

.glyphicons-left-arrow:before {
  content: "\e211";
}

.glyphicons-right-arrow:before {
  content: "\e212";
}

.glyphicons-down-arrow:before {
  content: "\e213";
}

.glyphicons-up-arrow:before {
  content: "\e214";
}

.glyphicons-resize-small:before {
  content: "\e215";
}

.glyphicons-resize-full:before {
  content: "\e216";
}

.glyphicons-circle-arrow-left:before {
  content: "\e217";
}

.glyphicons-circle-arrow-right:before {
  content: "\e218";
}

.glyphicons-circle-arrow-top:before {
  content: "\e219";
}

.glyphicons-circle-arrow-down:before {
  content: "\e220";
}

.glyphicons-play-button:before {
  content: "\e221";
}

.glyphicons-unshare:before {
  content: "\e222";
}

.glyphicons-share:before {
  content: "\e223";
}

.glyphicons-chevron-right:before {
  content: "\e224";
}

.glyphicons-chevron-left:before {
  content: "\e225";
}

.glyphicons-bluetooth:before {
  content: "\e226";
}

.glyphicons-euro:before {
  content: "€";
}

.glyphicons-usd:before {
  content: "\e228";
}

.glyphicons-gbp:before {
  content: "\e229";
}

.glyphicons-retweet-2:before {
  content: "\e230";
}

.glyphicons-moon:before {
  content: "\e231";
}

.glyphicons-sun:before {
  content: "☉";
}

.glyphicons-cloud:before {
  content: "☁";
}

.glyphicons-direction:before {
  content: "\e234";
}

.glyphicons-brush:before {
  content: "\e235";
}

.glyphicons-pen:before {
  content: "\e236";
}

.glyphicons-zoom-in:before {
  content: "\e237";
}

.glyphicons-zoom-out:before {
  content: "\e238";
}

.glyphicons-pin:before {
  content: "\e239";
}

.glyphicons-albums:before {
  content: "\e240";
}

.glyphicons-rotation-lock:before {
  content: "\e241";
}

.glyphicons-flash:before {
  content: "\e242";
}

.glyphicons-google-maps:before {
  content: "\e243";
}

.glyphicons-anchor:before {
  content: "⚓";
}

.glyphicons-conversation:before {
  content: "\e245";
}

.glyphicons-chat:before {
  content: "\e246";
}

.glyphicons-male:before {
  content: "\e247";
}

.glyphicons-female:before {
  content: "\e248";
}

.glyphicons-asterisk:before {
  content: "*";
}

.glyphicons-divide:before {
  content: "÷";
}

.glyphicons-snorkel-diving:before {
  content: "\e251";
}

.glyphicons-scuba-diving:before {
  content: "\e252";
}

.glyphicons-oxygen-bottle:before {
  content: "\e253";
}

.glyphicons-fins:before {
  content: "\e254";
}

.glyphicons-fishes:before {
  content: "\e255";
}

.glyphicons-boat:before {
  content: "\e256";
}

.glyphicons-delete:before {
  content: "\e257";
}

.glyphicons-sheriffs-star:before {
  content: "\e258";
}

.glyphicons-qrcode:before {
  content: "\e259";
}

.glyphicons-barcode:before {
  content: "\e260";
}

.glyphicons-pool:before {
  content: "\e261";
}

.glyphicons-buoy:before {
  content: "\e262";
}

.glyphicons-spade:before {
  content: "\e263";
}

.glyphicons-bank:before {
  content: "\e264";
}

.glyphicons-vcard:before {
  content: "\e265";
}

.glyphicons-electrical-plug:before {
  content: "\e266";
}

.glyphicons-flag:before {
  content: "\e267";
}

.glyphicons-credit-card:before {
  content: "\e268";
}

.glyphicons-keyboard-wireless:before {
  content: "\e269";
}

.glyphicons-keyboard-wired:before {
  content: "\e270";
}

.glyphicons-shield:before {
  content: "\e271";
}

.glyphicons-ring:before {
  content: "˚";
}

.glyphicons-cake:before {
  content: "\e273";
}

.glyphicons-drink:before {
  content: "\e274";
}

.glyphicons-beer:before {
  content: "\e275";
}

.glyphicons-fast-food:before {
  content: "\e276";
}

.glyphicons-cutlery:before {
  content: "\e277";
}

.glyphicons-pizza:before {
  content: "\e278";
}

.glyphicons-birthday-cake:before {
  content: "\e279";
}

.glyphicons-tablet:before {
  content: "\e280";
}

.glyphicons-settings:before {
  content: "\e281";
}

.glyphicons-bullets:before {
  content: "\e282";
}

.glyphicons-cardio:before {
  content: "\e283";
}

.glyphicons-t-shirt:before {
  content: "\e284";
}

.glyphicons-pants:before {
  content: "\e285";
}

.glyphicons-sweater:before {
  content: "\e286";
}

.glyphicons-fabric:before {
  content: "\e287";
}

.glyphicons-leather:before {
  content: "\e288";
}

.glyphicons-scissors:before {
  content: "\e289";
}

.glyphicons-bomb:before {
  content: "\e290";
}

.glyphicons-skull:before {
  content: "\e291";
}

.glyphicons-celebration:before {
  content: "\e292";
}

.glyphicons-tea-kettle:before {
  content: "\e293";
}

.glyphicons-french-press:before {
  content: "\e294";
}

.glyphicons-coffee-cup:before {
  content: "\e295";
}

.glyphicons-pot:before {
  content: "\e296";
}

.glyphicons-grater:before {
  content: "\e297";
}

.glyphicons-kettle:before {
  content: "\e298";
}

.glyphicons-hospital:before {
  content: "\e299";
}

.glyphicons-hospital-h:before {
  content: "\e300";
}

.glyphicons-microphone:before {
  content: "\e301";
}

.glyphicons-webcam:before {
  content: "\e302";
}

.glyphicons-temple-christianity-church:before {
  content: "\e303";
}

.glyphicons-temple-islam:before {
  content: "\e304";
}

.glyphicons-temple-hindu:before {
  content: "\e305";
}

.glyphicons-temple-buddhist:before {
  content: "\e306";
}

.glyphicons-bicycle:before {
  content: "\e307";
}

.glyphicons-life-preserver:before {
  content: "\e308";
}

.glyphicons-share-alt:before {
  content: "\e309";
}

.glyphicons-comments:before {
  content: "\e310";
}

.glyphicons-flower:before {
  content: "⚘";
}

.glyphicons-baseball:before {
  content: "⚾";
}

.glyphicons-rugby:before {
  content: "\e313";
}

.glyphicons-ax:before {
  content: "\e314";
}

.glyphicons-table-tennis:before {
  content: "\e315";
}

.glyphicons-bowling:before {
  content: "\e316";
}

.glyphicons-tree-conifer:before {
  content: "\e317";
}

.glyphicons-tree-deciduous:before {
  content: "\e318";
}

.glyphicons-more-items:before {
  content: "\e319";
}

.glyphicons-sort:before {
  content: "\e320";
}

.glyphicons-filter:before {
  content: "\e321";
}

.glyphicons-gamepad:before {
  content: "\e322";
}

.glyphicons-playing-dices:before {
  content: "\e323";
}

.glyphicons-calculator:before {
  content: "\e324";
}

.glyphicons-tie:before {
  content: "\e325";
}

.glyphicons-wallet:before {
  content: "\e326";
}

.glyphicons-piano:before {
  content: "\e327";
}

.glyphicons-sampler:before {
  content: "\e328";
}

.glyphicons-podium:before {
  content: "\e329";
}

.glyphicons-soccer-ball:before {
  content: "\e330";
}

.glyphicons-blog:before {
  content: "\e331";
}

.glyphicons-dashboard:before {
  content: "\e332";
}

.glyphicons-certificate:before {
  content: "\e333";
}

.glyphicons-bell:before {
  content: "\e334";
}

.glyphicons-candle:before {
  content: "\e335";
}

.glyphicons-pushpin:before {
  content: "\e336";
}

.glyphicons-iphone-shake:before {
  content: "\e337";
}

.glyphicons-pin-flag:before {
  content: "\e338";
}

.glyphicons-turtle:before {
  content: "\e339";
}

.glyphicons-rabbit:before {
  content: "\e340";
}

.glyphicons-globe:before {
  content: "\e341";
}

.glyphicons-briefcase:before {
  content: "\e342";
}

.glyphicons-hdd:before {
  content: "\e343";
}

.glyphicons-thumbs-up:before {
  content: "\e344";
}

.glyphicons-thumbs-down:before {
  content: "\e345";
}

.glyphicons-hand-right:before {
  content: "\e346";
}

.glyphicons-hand-left:before {
  content: "\e347";
}

.glyphicons-hand-up:before {
  content: "\e348";
}

.glyphicons-hand-down:before {
  content: "\e349";
}

.glyphicons-fullscreen:before {
  content: "\e350";
}

.glyphicons-shopping-bag:before {
  content: "\e351";
}

.glyphicons-book-open:before {
  content: "\e352";
}

.glyphicons-nameplate:before {
  content: "\e353";
}

.glyphicons-nameplate-alt:before {
  content: "\e354";
}

.glyphicons-vases:before {
  content: "\e355";
}

.glyphicons-bullhorn:before {
  content: "\e356";
}

.glyphicons-dumbbell:before {
  content: "\e357";
}

.glyphicons-suitcase:before {
  content: "\e358";
}

.glyphicons-file-import:before {
  content: "\e359";
}

.glyphicons-file-export:before {
  content: "\e360";
}

.glyphicons-bug:before {
  content: "\e361";
}

.glyphicons-crown:before {
  content: "\e362";
}

.glyphicons-smoking:before {
  content: "\e363";
}

.glyphicons-cloud-download:before {
  content: "\e364";
}

.glyphicons-cloud-upload:before {
  content: "\e365";
}

.glyphicons-restart:before {
  content: "\e366";
}

.glyphicons-security-camera:before {
  content: "\e367";
}

.glyphicons-expand:before {
  content: "\e368";
}

.glyphicons-collapse:before {
  content: "\e369";
}

.glyphicons-collapse-top:before {
  content: "\e370";
}

.glyphicons-globe-af:before {
  content: "\e371";
}

.glyphicons-global:before {
  content: "\e372";
}

.glyphicons-spray:before {
  content: "\e373";
}

.glyphicons-nails:before {
  content: "\e374";
}

.glyphicons-claw-hammer:before {
  content: "\e375";
}

.glyphicons-classic-hammer:before {
  content: "\e376";
}

.glyphicons-hand-saw:before {
  content: "\e377";
}

.glyphicons-riflescope:before {
  content: "\e378";
}

.glyphicons-electrical-socket-eu:before {
  content: "\e379";
}

.glyphicons-electrical-socket-us:before {
  content: "\e380";
}

.glyphicons-message-forward:before {
  content: "\e381";
}

.glyphicons-coat-hanger:before {
  content: "\e382";
}

.glyphicons-dress:before {
  content: "\e383";
}

.glyphicons-bathrobe:before {
  content: "\e384";
}

.glyphicons-shirt:before {
  content: "\e385";
}

.glyphicons-underwear:before {
  content: "\e386";
}

.glyphicons-log-in:before {
  content: "\e387";
}

.glyphicons-log-out:before {
  content: "\e388";
}

.glyphicons-exit:before {
  content: "\e389";
}

.glyphicons-new-window-alt:before {
  content: "\e390";
}

.glyphicons-video-sd:before {
  content: "\e391";
}

.glyphicons-video-hd:before {
  content: "\e392";
}

.glyphicons-subtitles:before {
  content: "\e393";
}

.glyphicons-sound-stereo:before {
  content: "\e394";
}

.glyphicons-sound-dolby:before {
  content: "\e395";
}

.glyphicons-sound-5-1:before {
  content: "\e396";
}

.glyphicons-sound-6-1:before {
  content: "\e397";
}

.glyphicons-sound-7-1:before {
  content: "\e398";
}

.glyphicons-copyright-mark:before {
  content: "\e399";
}

.glyphicons-registration-mark:before {
  content: "\e400";
}

.glyphicons-radar:before {
  content: "\e401";
}

.glyphicons-skateboard:before {
  content: "\e402";
}

.glyphicons-golf-course:before {
  content: "\e403";
}

.glyphicons-sorting:before {
  content: "\e404";
}

.glyphicons-sort-by-alphabet:before {
  content: "\e405";
}

.glyphicons-sort-by-alphabet-alt:before {
  content: "\e406";
}

.glyphicons-sort-by-order:before {
  content: "\e407";
}

.glyphicons-sort-by-order-alt:before {
  content: "\e408";
}

.glyphicons-sort-by-attributes:before {
  content: "\e409";
}

.glyphicons-sort-by-attributes-alt:before {
  content: "\e410";
}

.glyphicons-compressed:before {
  content: "\e411";
}

.glyphicons-package:before {
  content: "\e412";
}

.glyphicons-cloud-plus:before {
  content: "\e413";
}

.glyphicons-cloud-minus:before {
  content: "\e414";
}

.glyphicons-disk-save:before {
  content: "\e415";
}

.glyphicons-disk-open:before {
  content: "\e416";
}

.glyphicons-disk-saved:before {
  content: "\e417";
}

.glyphicons-disk-remove:before {
  content: "\e418";
}

.glyphicons-disk-import:before {
  content: "\e419";
}

.glyphicons-disk-export:before {
  content: "\e420";
}

.glyphicons-tower:before {
  content: "\e421";
}

.glyphicons-send:before {
  content: "\e422";
}

.glyphicons-git-branch:before {
  content: "\e423";
}

.glyphicons-git-create:before {
  content: "\e424";
}

.glyphicons-git-private:before {
  content: "\e425";
}

.glyphicons-git-delete:before {
  content: "\e426";
}

.glyphicons-git-merge:before {
  content: "\e427";
}

.glyphicons-git-pull-request:before {
  content: "\e428";
}

.glyphicons-git-compare:before {
  content: "\e429";
}

.glyphicons-git-commit:before {
  content: "\e430";
}

.glyphicons-construction-cone:before {
  content: "\e431";
}

.glyphicons-shoe-steps:before {
  content: "\e432";
}

.glyphicons-plus:before {
  content: "+";
}

.glyphicons-minus:before {
  content: "−";
}

.glyphicons-redo:before {
  content: "\e435";
}

.glyphicons-undo:before {
  content: "\e436";
}

.glyphicons-golf:before {
  content: "\e437";
}

.glyphicons-hockey:before {
  content: "\e438";
}

.glyphicons-pipe:before {
  content: "\e439";
}

.glyphicons-wrench:before {
  content: "\e440";
}

.glyphicons-folder-closed:before {
  content: "\e441";
}

.glyphicons-phone-alt:before {
  content: "\e442";
}

.glyphicons-earphone:before {
  content: "\e443";
}

.glyphicons-floppy-disk:before {
  content: "\e444";
}

.glyphicons-floppy-saved:before {
  content: "\e445";
}

.glyphicons-floppy-remove:before {
  content: "\e446";
}

.glyphicons-floppy-save:before {
  content: "\e447";
}

.glyphicons-floppy-open:before {
  content: "\e448";
}

.glyphicons-translate:before {
  content: "\e449";
}

.glyphicons-fax:before {
  content: "\e450";
}

.glyphicons-factory:before {
  content: "\e451";
}

.glyphicons-shop-window:before {
  content: "\e452";
}

.glyphicons-shop:before {
  content: "\e453";
}

.glyphicons-kiosk:before {
  content: "\e454";
}

.glyphicons-kiosk-wheels:before {
  content: "\e455";
}

.glyphicons-kiosk-light:before {
  content: "\e456";
}

.glyphicons-kiosk-food:before {
  content: "\e457";
}

.glyphicons-transfer:before {
  content: "\e458";
}

.glyphicons-money:before {
  content: "\e459";
}

.glyphicons-header:before {
  content: "\e460";
}

.glyphicons-blacksmith:before {
  content: "\e461";
}

.glyphicons-saw-blade:before {
  content: "\e462";
}

.glyphicons-basketball:before {
  content: "\e463";
}

.glyphicons-server:before {
  content: "\e464";
}

.glyphicons-server-plus:before {
  content: "\e465";
}

.glyphicons-server-minus:before {
  content: "\e466";
}

.glyphicons-server-ban:before {
  content: "\e467";
}

.glyphicons-server-flag:before {
  content: "\e468";
}

.glyphicons-server-lock:before {
  content: "\e469";
}

.glyphicons-server-new:before {
  content: "\e470";
}

.glyphicons-charging-station:before {
  content: "\f471";
}

.glyphicons-gas-station:before {
  content: "\e472";
}

.glyphicons-target:before {
  content: "\e473";
}

.glyphicons-bed-alt:before {
  content: "\e474";
}

.glyphicons-mosquito-net:before {
  content: "\e475";
}

.glyphicons-dining-set:before {
  content: "\e476";
}

.glyphicons-plate-of-food:before {
  content: "\e477";
}

.glyphicons-hygiene-kit:before {
  content: "\e478";
}

.glyphicons-blackboard:before {
  content: "\e479";
}

.glyphicons-marriage:before {
  content: "\e480";
}

.glyphicons-bucket:before {
  content: "\e481";
}

.glyphicons-none-color-swatch:before {
  content: "\e482";
}

.glyphicons-bring-forward:before {
  content: "\e483";
}

.glyphicons-bring-to-front:before {
  content: "\e484";
}

.glyphicons-send-backward:before {
  content: "\e485";
}

.glyphicons-send-to-back:before {
  content: "\e486";
}

.glyphicons-fit-frame-to-image:before {
  content: "\e487";
}

.glyphicons-fit-image-to-frame:before {
  content: "\e488";
}

.glyphicons-multiple-displays:before {
  content: "\e489";
}

.glyphicons-handshake:before {
  content: "\e490";
}

.glyphicons-child:before {
  content: "\e491";
}

.glyphicons-baby-formula:before {
  content: "\e492";
}

.glyphicons-medicine:before {
  content: "\e493";
}

.glyphicons-atv-vehicle:before {
  content: "\e494";
}

.glyphicons-motorcycle:before {
  content: "\e495";
}

.glyphicons-bed:before {
  content: "\e496";
}

.glyphicons-tent:before {
  content: "⛺";
}

.glyphicons-glasses:before {
  content: "\e498";
}

.glyphicons-sunglasses:before {
  content: "\e499";
}

.glyphicons-family:before {
  content: "\e500";
}

.glyphicons-education:before {
  content: "\e501";
}

.glyphicons-shoes:before {
  content: "\e502";
}

.glyphicons-map:before {
  content: "\e503";
}

.glyphicons-cd:before {
  content: "\e504";
}

.glyphicons-alert:before {
  content: "\e505";
}

.glyphicons-piggy-bank:before {
  content: "\e506";
}

.glyphicons-star-half:before {
  content: "\e507";
}

.glyphicons-cluster:before {
  content: "\e508";
}

.glyphicons-flowchart:before {
  content: "\e509";
}

.glyphicons-commodities:before {
  content: "\e510";
}

.glyphicons-duplicate:before {
  content: "\e511";
}

.glyphicons-copy:before {
  content: "\e512";
}

.glyphicons-paste:before {
  content: "\e513";
}

.glyphicons-bath-bathtub:before {
  content: "\e514";
}

.glyphicons-bath-shower:before {
  content: "\e515";
}

.glyphicons-shower:before {
  content: "🚿";
}

.glyphicons-menu-hamburger:before {
  content: "\e517";
}

.glyphicons-option-vertical:before {
  content: "\e518";
}

.glyphicons-option-horizontal:before {
  content: "\e519";
}

.glyphicons-currency-conversion:before {
  content: "\e520";
}

.glyphicons-user-ban:before {
  content: "\e521";
}

.glyphicons-user-lock:before {
  content: "\e522";
}

.glyphicons-user-flag:before {
  content: "\e523";
}

.glyphicons-user-asterisk:before {
  content: "\e524";
}

.glyphicons-user-alert:before {
  content: "\e525";
}

.glyphicons-user-key:before {
  content: "\e526";
}

.glyphicons-user-conversation:before {
  content: "\e527";
}

.glyphicons-database:before {
  content: "\e528";
}

.glyphicons-database-search:before {
  content: "\e529";
}

.glyphicons-list-alt:before {
  content: "\e530";
}

.glyphicons-hazard-sign:before {
  content: "\e531";
}

.glyphicons-hazard:before {
  content: "\e532";
}

.glyphicons-stop-sign:before {
  content: "\e533";
}

.glyphicons-lab:before {
  content: "\e534";
}

.glyphicons-lab-alt:before {
  content: "\e535";
}

.glyphicons-ice-cream:before {
  content: "\e536";
}

.glyphicons-ice-lolly:before {
  content: "\e537";
}

.glyphicons-ice-lolly-tasted:before {
  content: "\e538";
}

.glyphicons-invoice:before {
  content: "\e539";
}

.glyphicons-cart-tick:before {
  content: "\e540";
}

.glyphicons-hourglass:before {
  content: "⌛";
}

.glyphicons-cat:before {
  content: "🐈";
}

.glyphicons-lamp:before {
  content: "\e543";
}

.glyphicons-scale-classic:before {
  content: "\e544";
}

.glyphicons-eye-plus:before {
  content: "\e545";
}

.glyphicons-eye-minus:before {
  content: "\e546";
}

.glyphicons-quote:before {
  content: "\e547";
}

.glyphicons-bitcoin:before {
  content: "\e548";
}

.glyphicons-yen:before {
  content: "¥";
}

.glyphicons-ruble:before {
  content: "₽";
}

.glyphicons-erase:before {
  content: "\e551";
}

.glyphicons-podcast:before {
  content: "\e552";
}

.glyphicons-firework:before {
  content: "\e553";
}

.glyphicons-scale:before {
  content: "\e554";
}

.glyphicons-king:before {
  content: "\e555";
}

.glyphicons-queen:before {
  content: "\e556";
}

.glyphicons-pawn:before {
  content: "\e557";
}

.glyphicons-bishop:before {
  content: "\e558";
}

.glyphicons-knight:before {
  content: "\e559";
}

.glyphicons-mic-mute:before {
  content: "\e560";
}

.glyphicons-voicemail:before {
  content: "\e561";
}

.glyphicons-paragraph:before {
  content: "¶";
}

.glyphicons-person-walking:before {
  content: "\e563";
}

.glyphicons-person-wheelchair:before {
  content: "\e564";
}

.glyphicons-underground:before {
  content: "\e565";
}

.glyphicons-car-hov:before {
  content: "\e566";
}

.glyphicons-car-rental:before {
  content: "\e567";
}

.glyphicons-transport:before {
  content: "\e568";
}

.glyphicons-taxi:before {
  content: "🚕";
}

.glyphicons-ice-cream-no:before {
  content: "\e570";
}

.glyphicons-uk-rat-u:before {
  content: "\e571";
}

.glyphicons-uk-rat-pg:before {
  content: "\e572";
}

.glyphicons-uk-rat-12a:before {
  content: "\e573";
}

.glyphicons-uk-rat-12:before {
  content: "\e574";
}

.glyphicons-uk-rat-15:before {
  content: "\e575";
}

.glyphicons-uk-rat-18:before {
  content: "\e576";
}

.glyphicons-uk-rat-r18:before {
  content: "\e577";
}

.glyphicons-tv:before {
  content: "\e578";
}

.glyphicons-sms:before {
  content: "\e579";
}

.glyphicons-mms:before {
  content: "\e580";
}

.glyphicons-us-rat-g:before {
  content: "\e581";
}

.glyphicons-us-rat-pg:before {
  content: "\e582";
}

.glyphicons-us-rat-pg-13:before {
  content: "\e583";
}

.glyphicons-us-rat-restricted:before {
  content: "\e584";
}

.glyphicons-us-rat-no-one-17:before {
  content: "\e585";
}

.glyphicons-equalizer:before {
  content: "\e586";
}

.glyphicons-speakers:before {
  content: "\e587";
}

.glyphicons-remote-control:before {
  content: "\e588";
}

.glyphicons-remote-control-tv:before {
  content: "\e589";
}

.glyphicons-shredder:before {
  content: "\e590";
}

.glyphicons-folder-heart:before {
  content: "\e591";
}

.glyphicons-person-running:before {
  content: "\e592";
}

.glyphicons-person:before {
  content: "\e593";
}

.glyphicons-voice:before {
  content: "\e594";
}

.glyphicons-stethoscope:before {
  content: "\e595";
}

.glyphicons-hotspot:before {
  content: "\e596";
}

.glyphicons-activity:before {
  content: "\e597";
}

.glyphicons-watch:before {
  content: "⌚";
}

.glyphicons-scissors-alt:before {
  content: "\e599";
}

.glyphicons-car-wheel:before {
  content: "\e600";
}

.glyphicons-chevron-up:before {
  content: "\e601";
}

.glyphicons-chevron-down:before {
  content: "\e602";
}

.glyphicons-superscript:before {
  content: "\e603";
}

.glyphicons-subscript:before {
  content: "\e604";
}

.glyphicons-text-size:before {
  content: "\e605";
}

.glyphicons-text-color:before {
  content: "\e606";
}

.glyphicons-text-background:before {
  content: "\e607";
}

.glyphicons-modal-window:before {
  content: "\e608";
}

.glyphicons-newspaper:before {
  content: "📰";
}

.glyphicons-tractor:before {
  content: "🚜";
}

/* 
* 
* THIS IS A SMALL BONUS FOR ALL CURIOUS PEOPLE :) 
* Just add class .animated and .pulse, .rotateIn, .bounce, .swing or .tada to you HTML element with icons. You may find other great css animations here: http://coveloping.com/tools/css-animation-generator 
* 
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

.tab {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  padding: 0;
  list-style: none;
  position: relative;
}

.tab > * {
  flex: none;
  padding-left: 20px;
  position: relative;
}

.tab > * > a {
  display: block;
  text-align: center;
  padding: 9px 20px;
  color: #999;
  border-bottom: 2px solid transparent;
  border-bottom-color: transparent;
  font-size: 12px;
  text-transform: uppercase;
  transition: color 0.1s ease-in-out;
  line-height: 20px;
}

.tab > .active > a {
  color: #fff;
  border-color: #1e87f0;
}

.tab > li > a {
  text-decoration: none;
  cursor: pointer;
}

.tab-content {
  padding: 0;
}

.tab-content > li {
  display: none;
}

.tab-content > li.active {
  display: block;
}

.tab-content > li > ul,
.tab-content > li > ol {
  margin-bottom: 15px;
}

/* The 2 following blocks can be removed if the script is not configured to show the toast message */
#jekyll-tabs-copy-to-clipboard-message {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  right: 50%;
  bottom: 30px;
}

#jekyll-tabs-copy-to-clipboard-message.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.cerb-interaction-popup {
  color: black;
}

/*# sourceMappingURL=main.css.map */