
#scenarios {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15vh;
}

.scenario {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.scenario .input-container {
    position: relative;
    height:  5.5rem;
    width:  5.5rem;
    margin: 0.5rem;
}

.radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
}

.radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 2px solid  #079ad9;
    border-radius: 5px;
    padding: 1rem;
    transition: transform 300ms ease;
}
.icon svg {
    fill: #079ad9;
    width: 3rem;
    height: 3rem;
}
.radio-tile-label {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:  white;
}
.radio-tile-label.smaller {
    font-size: 1rem;
}

.radio-button:checked + .radio-tile {
    background-color:  #079ad9;
    border: 2px solid  #079ad9;
    color: white;
    transform: scale(1.1, 1.1);
}
        