.tourtip {
  margin-top: 10px;
  background-color: #ffffff;
  color: #11171A;
  padding: 20px;
  box-shadow: 0px 0px 40px rgba(17, 23, 26, 0.6);
  width: 400px;
  font-family: inherit;
  font-size: 14px;
  overflow: hidden;
  border-radius: 3px;
}
.tourtip:after {
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
  border: 10px solid transparent;
}
.tourtip.belowleft:after {
  border-bottom-color: #ffffff;
  top: -10px;
  left: 10px;
}
.tourtip.belowright:after {
  border-bottom-color: #ffffff;
  top: -10px;
  right: 10px;
}
.tourtip.aboveleft:after {
  border-top-color: #ffffff;
  top: 100%;
  left: 10px;
  padding-bottom: 10px;
}
.tourtip.aboveright:after {
  border-top-color: #ffffff;
  top: 100%;
  right: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.tourtip .tourtip-actions {
  list-style: none;
  padding: 0px;
  width: 100%;
  margin: 20px 0 0 0;
}
.tourtip .tourtip-actions a {
  border-radius: 3px;
  font-size: 12.6px;
  float: left;
  color: #025ea9;
  border: 1px solid #025ea9;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  margin: 0 6.66666667px 0 0;
}
.tourtip .tourtip-actions a.tourtip-skip {
  color: #B8BBBD;
  border: 1px solid #B8BBBD;
  float: right;
  margin-right: 0;
}
.tourtip .tourtip-actions a:hover {
  border: 1px solid #025ea9;
  background-color: #025ea9;
  color: #ffffff;
}
.tourtip .tourtip-actions a:active {
  border: 1px solid #025ea9;
  background-color: #00518f;
  color: #ffffff;
}
