* {
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background-color: ;
}

.radio-tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.radio-tile-group .input-container {
  position: relative;
  height: 200px;
  width: 200px;
  margin: 0.5rem;
  padding: 2em;
}
@media screen and (max-width:600px){
  .radio-tile-group .input-container{
    height: 200px;
    width: 400px; 
    
  }
}  
.radio-tile-group .input-container .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.radio-tile-group .input-container .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5em;
  width: 100%;
  height: 100%;
  /**border: 2px solid white;*/
  /**background-image: url({{item.IMG}});**/
     background-size: auto;
     background-image: strech;
    
       box-shadow:-4px 8px 8px rgba(0,0,0,0.1), -8px 16px 16px rgba(0,0,0,0.1), -4px 8px 8px rgba(0,0,0,0.1), -4px 8px 8px rgba(0,0,0,0.1);
      border-radius: 20px;
      padding: 1rem;
      transition: transform 300ms ease;
}
.radio-tile-group .input-container .icon svg {
  fill: #00ad5f;
  width: 3rem;
  height: 3rem;
}
.radio-tile-group .input-container .radio-tile-label {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  /**text-transform: uppercase;**/
  letter-spacing: 1px;
  color: black;
}
/** ###### SE PUDE PONER UN FONDO QUE SALGA DESPUÉS DE HACER CHECK #####*/
.radio-tile-group .input-container .radio-button:checked + .radio-tile {
  background-color: #00ad5f;
  border: 2px solid #00ad5f;
  color: white;
  transform: scale(1.1, 1.1);
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .icon svg {
  fill: white;
  background-color: #00ad5f;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
  color: white;
  /**background-color: #00ad5f;**/
}