:root {
    --primary-color: #5c8e70;
  }
  
  /* * {
    box-sizing: border-box;
    font-family: sans-serif;
  } */
  
  /* body {
    background-color: #1E2B35;
    overflow: visible;
  }  */
  
  .container {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* height: 100vh;  */
  }
  
  .radio-tile-group {
    margin-top: -50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .input-container {
    position: relative;
    height: 8rem;
    width: 200px;
    margin: 1rem;
  }
  
  .input-container input {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
  }
  
  .input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; 
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 300ms ease;
    padding: 0.5rem;
  }
  
  .input-container ion-icon {
    color: var(--primary-color);
    font-size: 3rem;
  }
  
  .input-container label {
    color: var(--primary-color);
    font-size: 0.80rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  input:checked+.radio-tile {
    background-color: #ececec;
    box-shadow: 0 0 12px #9cb4a5;
    transform: scale(1.1);
  }
  
  input:hover+.radio-tile {
    box-shadow: 0 0 12px var(--primary-color);
  }
  
  input:checked+.radio-tile ion-icon,
  input:checked+.radio-tile label {
    color: white;
  }   