/* CSS Document */

.custom-radios div {
  display: inline-block;   
}
.custom-radios input[type="radio"] {
  display: none;
}
.custom-radios input[type="radio"] + label {
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.custom-radios input[type="radio"] + label span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius:20px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 44px;
}
.custom-radios input[type="radio"] + label span img {
  opacity: 0;
  transition: all .3s ease;
}
.custom-radios input[type="radio"]:checked + label span img {
  opacity: 1;
  width:20px;
  height:auto;
}

/***************** TALLAS *********************/
/*
.radio-group input[type=radio] {
  position: absolute;
  visibility: hidden;
  display: none; 
}

.radio-group  label {
  color: #404040;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 15px;
   height:40px;  
}

.radio-group input[type=radio]:checked +  label {
  color: #fff;
  background: #888;
  height:40px;  
}

.radio-group label + input[type=radio] +  .my_label label {
  border-left: solid 1px #404040;
  
}

.radio-group {
  border: solid 1px #ccc;
  display: block;
  width:auto;
  
}

*/


