#insulation-wizard {
    margin-bottom: 3rem;
}

/* #insulation-wizard .step:not(:first-child) {
    display: none;
} */

#insulation-wizard .step {
    border: 2px solid #e9e9e9;
    padding: 2em;
    border-radius: 10px;
    margin-bottom: 2em;
    text-align: center;
}

#insulation-wizard .step.hidden {
    display: none;
}

#insulation-wizard .step h3 {
    margin-top: 0;
    line-height: 1.3em;
}

#insulation-wizard .step > div {
    display: flex;
    justify-content: center;
}

#insulation-wizard .step button {
    width: 13em;
    padding: 2em 1em;
    margin: 0.3em;
    background: #f9f9f9;
    border: 2px solid #e9e9e9;
    border-radius: 10px;
    outline: none;
    transition: all .2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#insulation-wizard .step button img {
    max-width: 4em;
    max-height: 4em;
    opacity: 0.3;
}

#insulation-wizard .step button.selected, #insulation-wizard .step button:hover {
    border: 2px solid #ff9900;
    background-color: #fff2de;
}

#insulation-wizard .step h4 {
    margin: 0.5em 0 1em;
    font-size: 1em;
}

.product-suggestions { 
    display: none;
    padding-top: 3em;
}

.product-suggestions > h5 {
    font-size: 2em;
    margin-top: 0em;
    text-align: center;
    line-height: 1.2;
}

.product-suggestions .suggestion {
    display: none;
    border: 2px solid #ff9900;
    border-radius: 10px;
    padding: 2em;
    text-align: center;
}

.product-suggestions .suggestion-image {
    max-width: 20%;
    margin-right: 2em;
    display: flex;
    align-items: center;
}

.product-suggestions .suggestion-text {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.product-suggestions .suggestion h3 {
    color: #ff9900;
}

.product-suggestions .product-suggestion-link {
    color: #ff9900;
    font-weight: 700;
    font-size: 1.1em;
    background: #e4e4e4;
    text-decoration: none;
    padding: 1em;
    display: block;
    max-width: 20em;
    margin: 0 auto;
}

.suggestion-details {
    display: flex;
    align-items: center;
}

@media (max-width: 700px) {
    .suggestion-details {
        display: block;
    }

    .product-suggestions .suggestion-image {
        justify-content: center;
        max-width: none;
        margin: 0;
    }

    #insulation-wizard .step > div {
        display: block;
    }

    #insulation-wizard .step button {
        display: block;
        width: 100%;
        height: auto;
    }
}