/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
/* line 5, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}

/* line 15, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto;
}

/* line 21, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

/* line 30, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
/* line 47, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

/* line 55, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

/* grow */
/* line 61, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

/* line 74, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
/* line 90, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}

/* line 103, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
/* line 120, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* line 133, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

/* line 138, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

/* slide */
/* line 150, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* line 163, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

/* line 168, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* line 196, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-update-fade {
  animation: tooltipster-fading 400ms;
}

/* rotate */
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}

/* line 214, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-update-rotate {
  animation: tooltipster-rotating 600ms;
}

/* scale */
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* line 229, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-update-scale {
  animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
/* line 242, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid black;
  border-radius: 4px;
}

/* line 248, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

/* line 252, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

/* line 256, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

/* line 260, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

/* .tooltipster-content */
/* line 266, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
/* line 275, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

/* line 280, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}

/* line 288, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
  top: 0;
  width: 10px;
}

/* line 298, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}

/* line 307, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
/* line 316, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

/* .tooltipster-arrow-background */
/* line 324, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

/* line 328, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0px;
  top: 3px;
}

/* line 334, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0px;
}

/* line 340, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0px;
}

/* line 346, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0px;
  top: -3px;
}

/* .tooltipster-arrow-border */
/* line 354, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

/* line 360, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: black;
}

/* line 364, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: black;
}

/* line 368, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: black;
}

/* line 372, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: black;
}

/* tooltipster-arrow-uncropped */
/* line 378, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

/* line 382, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

/* line 386, ../../usr/local/bundle/gems/tooltipster-rails-4.1.2/vendor/assets/stylesheets/tooltipster.bundle.css */
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

/* line 40, app/assets/stylesheets/demos.scss */
.demos {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9001;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

/* line 54, app/assets/stylesheets/demos.scss */
.demos * {
  box-sizing: inherit;
  font-family: inherit;
  font-weight: inherit;
}

/* line 62, app/assets/stylesheets/demos.scss */
.demos .panel-trigger {
  z-index: 9004;
  position: fixed;
  left: 6px;
  top: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid #333;
  border-radius: 5px;
  background: #f0f0f0;
}

/* line 33, app/assets/stylesheets/demos.scss */
.demos .panel-trigger:hover, .demos .panel-trigger:focus {
  background: #ccc;
}

/* line 73, app/assets/stylesheets/demos.scss */
.demos > .panel:not(.expanded),
.demos > .panel.expanded + .panel-trigger {
  display: none;
}

/* line 79, app/assets/stylesheets/demos.scss */
.demos > .panel {
  z-index: 9003;
  position: fixed;
  left: 0;
  top: 0;
  width: 240px;
  height: 100vh;
  font-size: 14px;
  color: #333;
  border: 1px solid #333;
  padding: 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* line 99, app/assets/stylesheets/demos.scss */
.demos > .panel > * {
  flex: none;
}

/* line 104, app/assets/stylesheets/demos.scss */
.demos > .panel p {
  margin-top: 0;
}

/* line 109, app/assets/stylesheets/demos.scss */
.demos > .panel .close {
  position: absolute;
  right: 6px;
  top: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid #333;
  border-radius: 5px;
}

/* line 33, app/assets/stylesheets/demos.scss */
.demos > .panel .close:hover, .demos > .panel .close:focus {
  background: #ccc;
}

/* line 117, app/assets/stylesheets/demos.scss */
.demos > .panel a {
  color: #3131ff;
}

/* line 121, app/assets/stylesheets/demos.scss */
.demos > .panel a:visited {
  color: #0000c4;
}

/* line 128, app/assets/stylesheets/demos.scss */
.demos > .panel .pages {
  flex: 1 1 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

/* line 136, app/assets/stylesheets/demos.scss */
.demos > .panel .pages > h2 {
  flex: none;
}

/* line 145, app/assets/stylesheets/demos.scss */
.demos > .panel .pages ul, .demos > .panel .pages li {
  margin: 0;
  padding: 0;
}

/* line 151, app/assets/stylesheets/demos.scss */
.demos > .panel .pages ul {
  overflow-y: auto;
  padding-right: 24px;
  margin-left: 24px;
}

/* line 158, app/assets/stylesheets/demos.scss */
.demos > .panel .pages li {
  white-space: nowrap;
}

/* line 163, app/assets/stylesheets/demos.scss */
.demos > .panel .pages .active > .title {
  font-weight: bold;
}

/* line 170, app/assets/stylesheets/demos.scss */
.demos > .overlays {
  position: absolute;
  z-index: 9002;
  left: 0;
  top: 0;
}

/* line 177, app/assets/stylesheets/demos.scss */
.demos > .overlays:not(.displayed) {
  display: none;
}

/* line 182, app/assets/stylesheets/demos.scss */
.demos > .overlays .item:not(.initialized) {
  display: none;
}

/* line 187, app/assets/stylesheets/demos.scss */
.demos > .overlays .item {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 193, app/assets/stylesheets/demos.scss */
.demos > .overlays .item > .trigger {
  background: #2dd500;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -12px;
  top: -6px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transform-origin: 50% 50%;
  animation: triggerpulse 1s infinite alternate;
}

/* line 208, app/assets/stylesheets/demos.scss */
.demos > .overlays .item > .trigger:hover, .demos > .overlays .item > .trigger:focus {
  background: #24a800;
}

@keyframes triggerpulse {
  0% {
    transform: none;
  }
  100% {
    transform: scale3d(1.2, 1.2, 1);
  }
}

/* line 237, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme .tooltipster-box {
  max-width: 768px;
  border: 2px solid #ccc;
  background: #eee;
}

/* line 247, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #eee;
}

/* line 252, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #ccc;
}

/* line 260, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #eee;
}

/* line 265, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #ccc;
}

/* line 272, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme .tooltipster-content {
  padding: 6px 12px;
  color: #333;
  text-align: left;
  font-size: 16px;
}

/* line 279, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme .tooltipster-content p:last-child {
  margin-bottom: 0;
}

/* line 284, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme .tooltipster-content pre,
.tooltipster-sidetip.tooltipster-documentation-theme .tooltipster-content code {
  margin: 0;
  padding: 0;
  font-family: monospace;
  text-align: left;
  white-space: pre-wrap;
}

/* line 294, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme .tooltipster-content pre {
  font-size: 14px;
  line-height: 18px;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 6px 12px;
  margin-bottom: 12px;
}

/* line 303, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme .tooltipster-content p + pre {
  margin-top: -12px;
}

/* line 308, app/assets/stylesheets/demos.scss */
.tooltipster-sidetip.tooltipster-documentation-theme .tooltipster-content p code {
  display: inline-block;
  font-size: 14px;
  margin-bottom: -6px;
  padding-left: 6px;
  padding-right: 6px;
  background-color: rgba(0, 0, 0, 0.05);
}
