div.clear
{
    clear: both;
}

div.product-chooser{
    
}

    div.product-chooser.disabled div.product-chooser-item
	{
		zoom: 1;
		filter: alpha(opacity=40);
		opacity: 0.4;
		cursor: default;
	}

	div.product-chooser div.product-chooser-item{
		width:80% ;
		padding: 0px;
		border-radius: 0px;
		cursor: pointer;
		position: relative;
		border: 0px solid #efefef;
		margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
		filter: alpha(opacity=40);
		opacity: 0.4;
	}
	
	div.product-chooser div.product-chooser-item.selected{
		border: 0px solid #333333;
		background: #ffffff;
		padding:  10px;
		filter: alpha(opacity=100);
		opacity: 1;
		font-weight: bold;
		color: #4C4C4C;
	}

	div.product-chooser div.product-chooser-item.selected p{
		filter: alpha(opacity=100);
		opacity: 1;
		font-weight: bold;
		color: #4C4C4C;
	}
	
	div.product-chooser div.product-chooser-item img{
		padding: 0;
	}
	
	div.product-chooser div.product-chooser-item span.title{
		display: block;
		margin: 10px 0 5px 0;
		font-weight: bold;
		font-size: 12px;
	}
	
	div.product-chooser div.product-chooser-item span.description{
		font-size: 12px;
	}
	
	div.product-chooser div.product-chooser-item input{
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		border-radius: 8px;
		cursor: pointer;
		border: 0px solid #f1f1f1;
		visibility: hidden;;

	}



		/* Radio Buttons */

.primary-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.primary-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.primary-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}

.primary-radio input:checked + label {
  background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
  border: none;
}

/* END Radio Buttons */
