.wpsta-preview {
  position: relative;
  display: inline;
}

.wpsta-user-details {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wpsta-user-details li:not(.description) {
  font-weight: bold;
  color: #222;
  font-size: 14px;
}
.wpsta-user-details li.first_name,
.wpsta-user-details li.last_name {
  display: inline-block;
}

.wpsta-name {
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.wpsta-details {
  left: -10px;
  margin-right: 80px;
  text-align: left;
  font-size: 12px !important;
  color: #666 !important;
  line-height: 1.5em;
  position: absolute;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  top: -10px;
  padding: 18px;
  box-shadow: 1px 2px 10px 2px rgba(30,30,30,0.1);
  display: none;
}

.wpsta-pic {
  width: 70px;
  float: right;
}

.wpsta-details-open-left {
  left: auto;
  right: -10px;
  text-align: right;
  margin-left: 80px;
  margin-right: 0;
}

.wpsta-details-open-left > .wpsta-pic {
  float: left;
}

.wpsta-details-open-top {
  bottom: -10px;
  top: auto;
  padding: 10px 10px 2em;
}

.wpsta-details-open-top > .wpsta-pic {
  margin-top: 10px;
  float: right;
}

.wpsta-details .s-action {
  position: absolute;
  top: 8px;
  right: 5px;
}

.wpsta-details .s-card-pad {
  border-top: solid 1px #eee;
  margin-top: 10px;
  padding-top: 10px;
  overflow: hidden;
}

.wpsta-details-open-top .s-card-pad {
  border: none;
  border-bottom: solid 1px #eee;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.wpsta-details .s-card .s-strong {
  font-weight: bold;
  color: #555;
}

.wpsta-details .s-img {
  float: left;
  margin-right: 10px;
  max-width: 70px;
}

.wpsta-details .s-name {
  color: #222;
  font-weight: bold;
}

.wpsta-details .s-loc {
  float: left;
}

.wpsta-details-open-left .s-loc {
  float: right;
}

.wpsta-details .s-href {
  clear: both;
  float: left;
}

.wpsta-details .s-desc {
  float: left;
  font-style: italic;
  margin-top: 5px;
  width: 100%;
}

.wpsta-details .s-username {
  text-decoration: none;
}

.wpsta-details .s-stats {
  display: block;
  float: left;
  margin-top: 5px;
  clear: both;
  padding: 0px;
}

.wpsta-details ul.s-stats li {
  list-style: none;
  float: left;
  display: block;
  padding: 0px 10px !important;
  border-left: solid 1px #eaeaea;
}

.wpsta-details ul.s-stats li:first-child {
  border: none;
  padding-left: 0 !important;
}

.wpsta-details .s-count {
  font-weight: bold;
}

.wpsta-footer {
  margin-top: 12px;
}
.wpsta-footer a.wpsta-button {
  border-radius: 4px !important;
  background: #ea4c89 !important;
  color: #FFF !important;
  box-shadow: none !important;
  padding: 6px 14px !important;
  border: 0 none !important;
  font-size: 12px !important;
  display: inline-block !important;
  cursor: pointer;
  outline: none;
}
.wpsta-footer a.wpsta-button:hover {
  background: #f082ac !important;
}
.wpsta-footer a.wpsta-button.disabled {
  cursor: not-allowed;
}
.wpsta-message {
  border-top: 1px solid #f8f8f8;
  padding-top: 12px;
  margin-top: 12px;
  display: none;
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-wpsta-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-wpsta-tooltip]:before,
[data-wpsta-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-wpsta-tooltip]:before {
  position: absolute;
  bottom: 120%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-wpsta-tooltip);
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-wpsta-tooltip]:after {
  position: absolute;
  bottom: 120%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-wpsta-tooltip]:hover:before,
[data-wpsta-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}