	.product_meta {display: none;}
	
	#footer_section { background-color: red}
	
	.sagedisabledthis.shopkit-main .shopkit-content {
    	width:auto !important;
	}

	div.tooltip {outline:none;position: relative}
	div.tooltip div.overlay {
		z-index:10;
		display:none; 
		padding:14px 20px;
		background: #fff;
	}
	div.tooltip:hover div.overlay{
		display:inline; 
		position:absolute; 
		border:1px solid #DCA;
		right: 0px;
		top: 0px;
	}
	div.tooltip div.overlay
	{
		border-radius:4px;
		box-shadow: 5px 5px 8px #CCC;
	}
	div.overlay img {
		max-width: none;
	}
	
	/* Default styles for desktop */
#firm_advice-slideout-form {
  position: fixed;
  right: -5000px;
  top: 0;
  bottom: 0;
  width: 800px;
  padding: 20px;
  border: 1px solid black;
  background: white;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.5s;
}

#firm_advice-slideout-form.open {
  right: 0;
}

.open + #firm_advice_overlay {
  display: block; /* show overlay */
}

#firm_advice_overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 4999;
  background-color: rgba(0, 0, 0, 0.5); /* translucent black */
  display: none; /* initially hidden */
}


/* Styles for mobile devices */
@media (max-width: 768px) {
  #firm_advice-slideout-form {
    position: fixed;
    left: -5000px;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    overflow-y: auto;
  }

  #firm_advice-slideout-form.open {
    left: 0;
  }
}


