
/* The popup share - hidden by default */
.share-popup {
  display: none;
  bottom: 0;
  right: 0;
  z-index: 9;
  position: absolute;
  top: 100%;
  left: 0;
}

#productshare .item{
  margin-top: 5px;
}

/* share buttons */
#productshare button {
  background-color: #aaa;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 0 #888, 1px 4px 2px rgba(0,0,0,0.2);
  color: white;
  display: block;
  font-family: sans-serif;
  font-size: .85em;
  font-weight: 300;
  outline: none;
  padding: 1em 0;
  position: relative;
  overflow: hidden;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  width: 100%;
}

#productshare button[data-sharer="twitter"] {
  background-color: #00aced;
  box-shadow: 0 2px 0 #0084b4, 1px 4px 2px rgba(0,0,0,0.2);
}

#productshare button[data-sharer="facebook"] {
  background-color: #3b5998;
  box-shadow: 0 2px 0 #224389, 1px 4px 2px rgba(0,0,0,0.2);
}

#productshare button[data-sharer="linkedin"] {
  background-color: #007AB5;
  box-shadow: 0 2px 0 #005E8C, 1px 4px 2px rgba(0,0,0,0.2);
}

#productshare button[data-sharer="email"] {
  background-color: #444;
  box-shadow: 0 2px 0 #222, 1px 4px 2px rgba(0,0,0,0.2);
}

#productshare button[data-sharer="whatsapp"] {
  background-color: #4DC247;
  box-shadow: 0 2px 0 #30AF29, 1px 4px 2px rgba(0,0,0,0.2);
}

#productshare button[data-sharer="telegram"] {
  background-color: #34ADE1;
  box-shadow: 0 2px 0 #0E9BD8, 1px 4px 2px rgba(0,0,0,0.2);
}

#productshare button:hover {
  text-decoration: none;
  transition: all .2s ease-in-out;
  transform: scale(1.1);
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .share-button:hover {
  opacity: 1;
}
