/*
Theme Name: Exponent Child
Description: Exponent Child Theme
Author: Brand Exponents
Template: exponent
Version: 1.0
*/

@import url("../exponent/style.css");


.tf-widget-container {
  bottom: 0;
  position: fixed;
  margin: 1em;
  left: 0px;
}

.tf-widget-buttons {
  box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 
              0px 4px 12px -7px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: block;
  width: 56px;
  height: 56px;
  margin: 20px auto 0;
  position: relative;
  -webkit-transition: all .1s ease-out;
          transition: all .1s ease-out;  
  padding: 10px;
    background-origin: content-box;
    background-repeat: no-repeat;

   background-color: white;
}

.tf-widget-buttons:active, 
.tf-widget-buttons:focus, 
.tf-widget-buttons:hover {
  box-shadow: 0 0 4px rgba(0,0,0,.14),
    0 4px 8px rgba(0,0,0,.28);
}

.tf-widget-buttons:not(:last-child) {
  width: 40px;
  height: 40px;
  margin: 20px auto 0;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

.tf-widget-container:hover 
.tf-widget-buttons:not(:last-child) {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin: 15px auto 0;
  
}

/* Unessential styling for sliding up.tf-widget-buttons at differnt speeds */

.tf-widget-buttons:nth-last-child(1) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
  background-image: url('/wp-content/themes/exponent_child/widget-img/envato.png');
  background-size: contain;
  border: 1px solid #7CB342;
}

.tf-widget-buttons:not(:last-child):nth-last-child(2) {
  -webkit-transition-delay: 50ms;
          transition-delay: 20ms;
  background-image: url('/wp-content/themes/exponent_child/widget-img/cart.png');
  background-size: contain;
}

.tf-widget-buttons:not(:last-child):nth-last-child(3) {
  -webkit-transition-delay: 75ms;
          transition-delay: 40ms;
  background-image: url('/wp-content/themes/exponent_child/widget-img/email.png');
  background-size: contain;
}

.tf-widget-buttons:not(:last-child):nth-last-child(4) {
  -webkit-transition-delay: 100ms;
          transition-delay: 60ms;
  background-image: url('/wp-content/themes/exponent_child/widget-img/back.png');
  background-size: contain;
}

/* Show tooltip content on hover */

[tf-widget-tooltip]:before {
  bottom: 25%;
  font-family: arial;
  font-weight: 600;
  border-radius: 2px;
  background: #585858;
  color: #fff;
  content: attr(tf-widget-tooltip);
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  padding: 5px 7px;
  margin-left: 12px;
  position: absolute;
  left: 100%;
  white-space: nowrap;
  z-index: 9999;
}

[tf-widget-tooltip]:hover:before,
[tf-widget-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}

