/*Általános*/

.tooltip {
  position: absolute;
  z-index: 10000;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
  min-width: 150px;
}

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 300px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  border-radius: 4px;
	font-weight: normal;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}

.tooltipwhite {min-width: inherit;}

.tooltipwhite .tooltip-inner {
  text-align: left;
  white-space: nowrap;
  }

.tooltipwhite .tooltip-inner {
  color: #000000;
  background-color: #ecf0f1;
  border: 1px solid #f68b00;
}
.tooltipwhite.top .tooltip-arrow {
/*  border-top-color: #d8d8d8; */
  border-top-color: #f68b00;
}
.tooltipwhite.top-left .tooltip-arrow {
  border-top-color: #f68b00;
}
.tooltipwhite.top-right .tooltip-arrow {
  border-top-color: #f68b00;
}
.tooltipwhite.right .tooltip-arrow {
  border-right-color: #f68b00;
}
.tooltipwhite.left .tooltip-arrow {
  border-left-color: #f68b00;
}
.tooltipwhite.bottom .tooltip-arrow {
  border-bottom-color: #f68b00;
}
.tooltipwhite.bottom-left .tooltip-arrow {
  border-bottom-color: #f68b00;
}
.tooltipwhite.bottom-right .tooltip-arrow {
  border-bottom-color: #f68b00;
}

.tooltipline {white-space: nowrap;}
 