/* Tipso Bubble Styles */
.tipso_bubble, .tipso_bubble > .tipso_arrow {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1em;
}

.tipso_bubble {
  position: absolute;
  text-align: left;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  border-radius: 0;
  z-index: 999999;
  background-color: #d0e5ec;
  border: 3px solid #D2E4E9;
  bottom: auto;

  /*-webkit-box-shadow: 0px 0px 10px 0px rgba(100,100,100,0.05);
  -moz-box-shadow: 0px 0px 10px 0px rgba(100,100,100,0.05);
  box-shadow: 0px 0px 10px 0px rgba(100,100,100,0.05);*/
}

.tipso_style {
  cursor: help !important;
}

.tipso_bubble .lexicon_tooltip > div {
  margin-bottom: 0 !important;
}

.tipso_title {
  border-radius: 0;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 17px;
  color: #333 !important;
}

.tipso_title:empty {
  display: none;
  height: 0;
}

.tipso_button_close {
  /*  float: right;
    position: relative;
    top: -16px;
    right: 16px;*/
  position: absolute;
  display: block;
  background-color: #D2E4E9;
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  text-align: center;
  padding-top: 7px;
  box-sizing: border-box;
}

.tipso_content {
  word-wrap: break-word;
  padding: 12px 17px;

  /*padding-bottom: 2px;*/
  overflow: hidden;
  min-width: 200px;

  /*background-color: #ecf3f5;*/
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 30px;
}

/* Tipso Bubble size classes - Similar to Foundation's syntax*/
.tipso_bubble.tiny {
  font-size: 0.6rem;
}

.tipso_bubble.small {
  font-size: 0.8rem;
}

.tipso_bubble.default {
  font-size: 1rem;
}

.tipso_bubble.large {
  font-size: 1.2rem;
  width: 100%;
}

/* Tipso Bubble Div */
.tipso_bubble > .tipso_arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 8px solid;
  pointer-events: none;
}

.tipso_bubble.top > .tipso_arrow {
  border-top-color: #000;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
  top: 100%;
  left: 50%;
  margin-left: -8px;
}

.tipso_bubble.bottom > .tipso_arrow {
  border-bottom-color: #000;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
}

.tipso_bubble.left > .tipso_arrow {
  border-left-color: #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  top: 50%;
  left: 100%;
  margin-top: -8px;
}

.tipso_bubble.right > .tipso_arrow {
  border-right-color: #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  top: 12px;
  right: 100%;
  margin-top: -8px;
}

.tipso_bubble.right_top > .tipso_arrow {
  border-right-color: #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  top: 10px;
  right: 100%;
  margin-top: -8px;
  border-width: 0 12px 15px 0;
}

.tipso_bubble .top_right_corner,
.tipso_bubble.top_right_corner {
  border-bottom-left-radius: 0;
}

.tipso_bubble .right_top_corner,
.tipso_bubble.right_top_corner {
  border-bottom-left-radius: 0;
}

.tipso_bubble .bottom_right_corner,
.tipso_bubble.bottom_right_corner {
  border-top-left-radius: 0;
}

.tipso_bubble .top_left_corner,
.tipso_bubble.top_left_corner {
  border-bottom-right-radius: 0;
}

.tipso_bubble .bottom_left_corner,
.tipso_bubble.bottom_left_corner {
  border-top-right-radius: 0;
}