/* setup tooltips */
.tooltip {
  position: relative;
  font-size: 12px;
  padding: 2px 33px;
 
}
#btn {display:none;}

.tooltip:before,
.tooltip:after {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 12 !important;
}
.tooltip:after {
	border-right: 6px solid transparent;
	border-bottom: 6px solid rgba(0,0,0,.75); 
  border-left: 6px solid transparent;
  content: '';
  height: 0;
    top: 49px;
    left: 37px;
  width: 0;
}
.tooltip:before {
  background: rgba(0,0,0,.75);
  border-radius: 2px;
  color: #fff;
  content: attr(data-title);
  font-size: 12px;
  padding: 6px 10px;
    top: 55px;
  white-space: nowrap;
}

/* the animations */
/* fade */
.tooltip.fade:after,
.tooltip.fade:before {
  transform: translate3d(0,-10px,0);
  transition: all .15s ease-in-out;
}
.tooltip.fade:hover:after,
.tooltip.fade:hover:before {
  opacity: 1;
  transform: translate3d(0,0,0);
}

.newsletter {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  gap: 15px;
  background-color: #ffeebc93;
  border-left: 5px solid #fbcd00;
  padding: 15px;
  margin-bottom: 30px;

  p {font-size: 15pt;
    text-align: left;
    line-height: 22pt;
    margin: 0px;
    }
  
  form {
    font-size: 14pt;
    width: 100%;}
  
  input[type=email],
  input[type=text] {
    font-size: 14pt;
    padding: 0.75em 0.7em 0.75em 0.7em;
    margin-bottom: 20px;
  }

  span {
    font-size: 13pt;
    padding:10px;
    cursor: pointer;
  }

  span:hover {
    background-color: black;
    color: #fff;
  }

}