.jumpFix {
  display: block;
  height: 150px;
  margin: -150px 0 0;
  visibility: hidden;
}
.bestof_product {

}
.bestof_product h2 {
	margin-top: -50px;
	color: #105ab2;
	font-size: 1.7em;
}
.bestof_product .description {
	padding-left: 425px;
  min-height: 500px;
}
.bestof_product .description .key {
}
.bestof_product .description .key strong{
    font-weight: 500;
}
.bestof_product .image {
    float: left;
    width: 400px;
    height: 400px;
    margin-right: 25px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.25);
}
.bestof_product .numbers {
	float: right;
	text-align: center;
	width: 120px;
    margin-left: 25px;
	font-size: .75em;
	background-color: white;
	font-family: Roboto Condensed;
	border-bottom: 3px solid #ddd;
}
.bestof_product .numbers a.withTooltip {
	color: #333;
}
.bestof_product .numbers .label {
	text-transform: uppercase;
	color: #666;
	background: #ddd;
	padding: 5px;
}
.bestof_product .numbers .price {
	padding: 5px 0 0;
}
.bestof_product .numbers .price .price_tag {
	padding: 0px 0 3px;
    margin-top: 2px;
	font-size: 2.7em;
    background-color: green;
    cursor: pointer;
    line-height: 1.6em;
}
.bestof_product .numbers .price .price_tag:hover {
    background-color: #00BE15;
}
.bestof_product .numbers .price .price_tag a {
    color: white;
}
.bestof_product .numbers .price .price_tag a:hover {  
}
.bestof_product .numbers .meta {
	padding: 15px 0 10px;
}
.bestof_product .numbers .meta .score {
    text-align: center;
    margin: 2px auto 0;
    background-color: #105ab2;
}
.bestof_product .numbers .meta .score:hover {
    background-color: #286ABA;
}
.bestof_product .numbers .meta .score .number{
    font-family: "Helvetica Neue","Roboto",sans-serif !important;
    color: white;
    line-height: 1.8em;
    font-size: 2.6em;
    font-weight: 500;
}
.bestof_product .numbers .user_score {
  padding: 5px 0 10px;
}
.bestof_product .numbers .user_score .score {
    text-align: center;
    margin: 2px auto 5px;
    background-color: #f08804;
}
.bestof_product .numbers .user_score .score:hover {
    background-color: #F2941D;
}
.bestof_product .numbers .user_score .score .number{
    font-family: "Helvetica Neue","Roboto",sans-serif !important;
    color: white;
    line-height: 1.8em;
    font-size: 2.6em;
    font-weight: 500;
}
.bestof_product .numbers .user_score .num_users {
  
}

/**
 * Mobile here we go
 */
@media only screen and (max-width: 760px) {

  .bestof_product .image {
    float: none;
    width: 100%;
    height: 300px;
    margin-right: 0;
  }

  .bestof_product .description {
    padding-left: 0;
  }

  .bestof_product .numbers {
    float: none;
    width: 100%;
    margin: 20px 0 30px;
    border-bottom: none;
  }

  .bestof_product .numbers .price .price_tag {
    padding: 3px 0 3px;
  }

  .bestof_product .numbers .label {
    font-size: 90%;
  }

  .bestof_product .numbers .price,
  .bestof_product .numbers .meta,
  .bestof_product .numbers .user_score {
    width: 28%;
    padding: 5px 5px 0;
    display: inline-block;
  }

}



/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:    
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:         
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

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

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px); 
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px); 
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px); 
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}