/* GLOBAL/RESET */
.earnist a, .earnist span, .earnist img, .earnist button {
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  outline: 0;
  text-decoration: none !important;
}

.earnist {
  display: block;
  text-decoration: none !important;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: none !important;
  box-sizing: border-box;
  overflow: auto;
}

.earnist:hover, .earnist:focus {
  background: transparent !important;
  text-decoration: none !important;
}

.earnist-title {
  display: block;
}

.earnist-image {
  display: block;
  box-shadow: none !important;
}

.earnist-price {
  display: block;
}

.earnist-amount {}

.earnist-description {
  display: block;
}

.earnist-button {
  cursor: pointer;
}

.earnist-disclosure{
  display: block
}

/* PRODUCT DISPLAY BOX STYLES */

.earnist-simple {
  border: 1px solid #e2e2e2 !important;
  border-radius: 4px;
  padding: 30px 40px;
  position: relative;
}

.earnist-simple .earnist-title {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  margin: 0 0 15px 0;
}

.earnist-simple .earnist-title:hover, .earnist-simple .earnist-title:focus {
  color: inherit;
}

.earnist-simple .earnist-image {
  float: right;
  margin: 0 0 20px 20px;
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 200px;
}

.earnist-simple .earnist-price {
  color: #666;
  margin: 0 0 20px 0;
}

.earnist-simple .earnist-amount {
  color: #b12704;
  font-weight: bold;
}

.earnist-simple .earnist-description {
  color: #666;
  margin: 0 0 20px 0;
}

.earnist-simple .earnist-button {
  background-color: #5fad41;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  padding: 15px 25px;
  text-align: center;
  font-weight: bold;
}

.earnist-simple .earnist-disclosure{
  font-size: 12px;
  line-height: 16px;
  margin: 20px 0 0 0; 
  color: #666; 
  font-style: italic;
}

/* RESPONSIVE */

@media only screen and (max-width: 767px) {
  .earnist-simple {
    text-align: center;
  }
  .earnist-simple .earnist-image {
    float: none;
    margin: 0 auto 25px auto;
  }
}

/* Tooltip container */
.earnist-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: none; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.earnist-tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #343434;
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  font-size: 10px !important;
  line-height: 18px !important;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

.earnist-tooltip.earnist-tooltip-wide .tooltiptext {
  width: 300px;
}

.earnist-tooltip.earnist-tooltip-small .tooltiptext {
  font-size: 0.7em;
}

/* Show the tooltip text when you mouse over the tooltip container */
.earnist-tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip-bottom {
  top: 135%;
  left: 50%;
  margin-left: -150px;
}

.tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
}
