.df-tooltip-btn.df-style1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 1.6em;
  min-width: 150px;
  padding: 0.7em 2.1em;
  font-size: 15px;
  border-radius: 4px;
}

.df-tooltip-btn,
.df-tooltip-btn:hover {}

.df-tooltip-btn.df-style1.df-color1,
.df-tooltip-btn.df-style1.df-color1:hover {
  color: #fff;
  background-color: #3FC65F;
}

.df-tooltip-btn.df-style1.df-color2,
.df-tooltip-btn.df-style1.df-color2:hover {
  color: #fff;
  background-color: #167EFD;
}

.df-tooltip-btn.df-style1.df-color3,
.df-tooltip-btn.df-style1.df-color3:hover {
  color: #fff;
  background-color: #5D5BCA;
}

.df-tooltip-btn.df-style1.df-color4,
.df-tooltip-btn.df-style1.df-color4:hover {
  color: #fff;
  background-color: #FC8E3A;
}

.df-tooltip-btn.df-style2 {
  padding: 0.5em;
  border-radius: 4px;
  font-size: 16px;
  width: 40px;
  display: inline-block;
  text-align: center;
}

.df-tooltip-btn.df-style2.df-color1 {
  color: #3fc65f;
  background-color: rgba(63, 198, 95, 0.1);
  border: 1px solid rgba(63, 198, 95, 0.3);
}

.df-tooltip-btn.df-style2.df-color2 {
  color: #167EFD;
  background-color: rgba(22, 126, 253, 0.1);
  border: 1px solid rgba(22, 126, 253, 0.3);
}

.df-tooltip-btn.df-style2.df-color3 {
  color: #5D5BCA;
  background-color: rgba(93, 91, 202, 0.1);
  border: 1px solid rgba(93, 91, 202, 0.3);
}

.df-tooltip-btn.df-style2.df-color4 {
  color: #FC8E3A;
  background-color: rgba(252, 142, 58, 0.3);
  border: 1px solid rgba(252, 142, 58, 0.3);
}

.df-tooltip-wrap {
  position: relative;
  display: inline-block;
}

.df-tooltip {
  position: absolute;
  width: 150px;
  font-size: 13px;
  line-height: 1.6em;
  padding: 0.5em 1em;
  border: 1px solid #eaeaea;
  background-color: #fafafa;
  border-radius: 4px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.df-tooltip-wrap:hover .df-tooltip {
  opacity: 1;
  visibility: visible;
}

.df-tooltip:before {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  border: 1px solid #eaeaea;
  background-color: #fafafa;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.df-top-tooltip .df-tooltip:before {
  bottom: -5px;
  left: 50%;
  margin-left: -7px;
  border-left: none;
  border-top: none;
}

.df-top-tooltip .df-tooltip {
  bottom: 100%;
  text-align: center;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.df-top-tooltip:hover .df-tooltip {
  margin-bottom: 15px;
}

.df-bottom-tooltip .df-tooltip {
  top: 100%;
  text-align: center;
  margin-top: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.df-bottom-tooltip:hover .df-tooltip {
  margin-top: 15px;
}

.df-bottom-tooltip .df-tooltip:before {
  top: -5px;
  left: 50%;
  margin-left: -7px;
  border-right: none;
  border-bottom: none;
}

.df-left-tooltip .df-tooltip {
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-49%);
  -ms-transform: translateY(-49%);
  transform: translateY(-49%);
  text-align: center;
  margin-left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left;
}

.df-left-tooltip:hover .df-tooltip {
  margin-left: 15px;
}

.df-left-tooltip .df-tooltip:before {
  left: -5px;
  top: 50%;
  margin-top: -5px;
  border-right: none;
  border-top: none;
}

.df-right-tooltip .df-tooltip {
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-49%);
  -ms-transform: translateY(-49%);
  transform: translateY(-49%);
  text-align: center;
  margin-right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: right;
}

.df-right-tooltip:hover .df-tooltip {
  margin-right: 15px;
}

.df-right-tooltip .df-tooltip:before {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left: none;
  border-bottom: none;
}
