/* tooltip_contactbutton container */
.tooltip_contactbutton {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  white-space: nowrap;
}

.tooltip_contactbutton .tooltiptext {
  visibility: hidden;
  background-color: #fff;
  color: #000;
  box-shadow: 1px 1px 1px 1px #48529944;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 3px;
  left: 110%;
  font-size:15px;
  

}

.tooltip_contactbutton .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #48529944 transparent transparent;

}
.tooltip_contactbutton:hover .tooltiptext {
  visibility: visible;
}

.tooltip_contactbutton_dropbtn {
  /*background-color: #ff6550ff;*/
  border: none;
  cursor: pointer;
  border-radius: 100%;
  animation: 1s ease-out 0s 1 slideInFromLeft;

  
}


@keyframes slideInFromLeft {
  0% {
    transform: translateY(200%);
  }
  100% {
    transform: translateY(0%);
  }
}


.tooltip_contactbutton_dropbtn img {
  text-align: center;
  height:48px;
  padding:0;
}

.tooltip_contactbutton_dropbtn:hover, .tooltip_contactbutton_dropbtn:focus {
  /*background-color: #ff6550ff;*/
}

.dropup_contactbutton {
  position: fixed;
  bottom: 50px;
  left: 20px;
  display: inline-block;
  font-size:24px;
  z-index:100;

}

.dropup_contactbutton-content {
  display: none;
  position: absolute;
  min-width: 48px;
  bottom: 45px;
  z-index: 1;
}
.dropup_contactbutton-content > * {
  margin: 10px 0px;
}
.dropup_contactbutton-content img{
  height:48px;
}
.dropup_contactbutton-content a {
  padding: 16px 16px;
  text-decoration: none;
  display: block;
  /*background-color: #2980B9;*/
  border-radius: 100%;
  width:48px;
  height:48px;

}
.dropup_contactbutton-content img {
  position:absolute;
  text-align: center;
  left: 0px;
  bottom:0px;
}

/* end tooltip_contactbutton container */
/* arrow scrolltop */
.scroll-top {
  background: #4a90e2;
  border-radius: 20px;
  position: fixed;
  bottom: 14px;
  right: 20px;
  height: 40px;
  width: 40px;
  z-index: 9;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
  -webkit-transform: translateY(86px);
  transform: translateY(86px);
}


.scroll-top:hover,
.scroll-top:focus {
    color: #fff;
}

.scroll-top.scroll-top-visible {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#particles-js,
#particles-snow-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 767px) {
    .scroll-top {
        display: none;
    }
}
/* end arrow scrolltop */