.can {
	height: 300px;
	width: 350px;
	background-color: rgba(255, 177, 0, 0.38);
	margin: 8px;
	border: 2px solid #E08440;
    border-radius: 20px;
	opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
	cursor: pointer;
}

.can:hover {
	background-color: #E08440;
	opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

.selected {
	background-color: #E08440;
	opacity: 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
	cursor: default;
	color: black;
}

.can img {
	padding-top: 5px;
	height: 150px;
	width: 150px;
}

.can p {
	font-size: 1.5em;
	color:#6D6D6D;
}


.btn-fuse {
color: #fff;
background-color: #e69d66;
border-color: #d48c3a;
}


/* COOL RADIO BUTTONS*/
/* RESTYLED RADIO/CHECKBOXES */
.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 13.33333px;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.15s ease-out 0;
  -moz-transition: all 0.15s ease-out 0;
  transition: all 0.15s ease-out 0;
  background: #E04040;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  outline: none;
  position: relative;
  margin-right: 0.5rem;
  z-index: 1000;
}

.option-input:hover { background: #E04040; }

.option-input:checked { background: #E04040; }

.option-input:checked::before {
  width: 40px;
  height: 40px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 40px;
}

.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #E08440;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

.option-input.radio { border-radius: 50%; }

.option-input.radio::after { border-radius: 50%; }

/* ANIMATION */
@-webkit-keyframes 
click-wave { 0% {
 width: 40px;
 height: 40px;
 opacity: 0.35;
 position: relative;
}
 100% {
 width: 200px;
 height: 200px;
 margin-left: -80px;
 margin-top: -80px;
 opacity: 0.0;
}
}

@-moz-keyframes 
click-wave { 0% {
 width: 40px;
 height: 40px;
 opacity: 0.35;
 position: relative;
}
 100% {
 width: 200px;
 height: 200px;
 margin-left: -80px;
 margin-top: -80px;
 opacity: 0.0;
}
}

@-o-keyframes 
click-wave { 0% {
 width: 40px;
 height: 40px;
 opacity: 0.35;
 position: relative;
}
 100% {
 width: 200px;
 height: 200px;
 margin-left: -80px;
 margin-top: -80px;
 opacity: 0.0;
}
}

@keyframes 
click-wave { 0% {
 width: 40px;
 height: 40px;
 opacity: 0.35;
 position: relative;
}
 100% {
 width: 200px;
 height: 200px;
 margin-left: -80px;
 margin-top: -80px;
 opacity: 0.0;
}
}
