/*
self curated theme for intro.js
*/

.introjs-helperNumberLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  top: -16px;
  left: -16px;
  z-index: 9999999999 !important;
  padding: 2px;
  font-family: inherit;
  font-size: 13px;
  font-weight: bold;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0,0,0,.3);
  background: #1b807c; /* Old browsers */
  background: -webkit-linear-gradient(top, #1b807c 0%, #145f5c 100%); /* Chrome10+,Safari5.1+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1b807c), color-stop(100%, #145f5c)); /* Chrome,Safari4+ */
  background:    -moz-linear-gradient(top, #1b807c 0%, #145f5c 100%); /* FF3.6+ */
  background:     -ms-linear-gradient(top, #1b807c 0%, #145f5c 100%); /* IE10+ */
  background:      -o-linear-gradient(top, #1b807c 0%, #145f5c 100%); /* Opera 11.10+ */
  background:         linear-gradient(to bottom, #1b807c 0%, #145f5c 100%);  /* W3C */
  width: 20px;
  height:20px;
  line-height: 20px;
  border: 3px solid white;
  border-radius: 50%;
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1b807c', endColorstr='#145f5c', GradientType=0)"; /* IE6-9 */
  filter: "progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000)"; /* IE10 text shadows */
  box-shadow: 0 2px 5px rgba(0,0,0,.4);
}

.introjs-tooltip {
  min-width: 250px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .introjs-tooltip {
    min-width: 350px;
  }
}

.introjs-arrow.top {
  top: -9px;
}
.introjs-arrow.bottom {
  bottom: -9px;
}