/*This css hovers and tooltips the subscribe buttons*/

.tooltip {
    display:inline-block;
    position:relative;
    border-bottom:1px dotted #666;
    text-align:left;
}

.tooltip .top {
    
    top:-20px;
    left:50%;
    transform:translate(-50%, -100%);
    padding:10px 20px;
    color:#080705;
    background-color:#fffffa;
    font-weight:normal;
    font-size:13px;
    border-radius:8px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    display:none;
}

.tooltip:hover .top {
    display:block;
}

.tooltip .top i {
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-12px;
    width:24px;
    height:12px;
    overflow:hidden;
}

.tooltip .top i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
    transform:translate(-50%,-50%) rotate(45deg);
    background-color:#fffffa;
}

.my-hover {
/*  display: block;*/
  width: 100%;
  position: relative;
  top: 0;
  background: #fffffa;
  overflow: hidden;
  z-index: 9;
  margin-bottom: 30px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
    
}
.my-hover img {
  z-index: 8;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.my-hover .fh5co-text {
  padding: 10px 20px;
}
.my-hover .fh5co-text h2, .my-hover .fh5co-text span {
  text-decoration: none !important;
}
.my-hover .fh5co-text h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.my-hover .fh5co-text span {
  color: #c9bea9;
  font-size: 16px;
  font-weight: 400;
}
.my-hover:hover, .my-hover:focus {
/*
  -webkit-box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4);
*/
  text-decoration: none;
  top: -15px;
}
.my-hover:hover img, .my-hover:focus img {
  opacity: 0.7;
}
.my-hover:hover h2, .my-hover:hover span, .my-hover:focus h2, .my-hover:focus span {
  text-decoration: none !important;
}