.page:not(.visible) {
    display: none;
}
.page-bottom-actions{
    margin-top: 20px;
}
.page-bottom-actions .button-next, #button-submit{
    float: right;
}


.inner-page{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.page-child{
    width: calc(25% - 20px);
    max-width: 25%;
    text-align: center;
    flex-grow: 1;
    border: 1px solid var(--cream);
    padding: 40px 20px;
    border-radius: 0.5rem;
    cursor: pointer;
}
.page-child label{
    margin: 0;
    display: block;
    cursor: pointer;
    pointer-events: none;
}
.page-child input{
    display: none;
}
.page h2{
    text-align: center;
    margin-bottom: 50px;
}

.input-selected{
    background-color: var(--cream);
    color: black;
}





.rangeValue {
    position: relative;
    display: block;
    text-align: center;
    font-size: 6em;
    color: var(--cream);
    font-weight: 400;
}
.slider {
    width: 400px;
    height: 15px;
    -webkit-appearance: none;
    background: #111;
    outline: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--cream);
    cursor: pointer;
    border: 4px solid var(--blue);
    box-shadow: -407px 0 0 400px var(--cream);
}


.website-price-results-table{
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
.website-price-results-table tr:nth-child(even){
    background-color: var(--cream);
    color: var(--black);
}

.website-price-results-table th{
    background-color: var(--blue);
}

th,td{
    padding: 18px;
}


@media screen and (max-width: 500px) {
    .page-child{
        width: calc(50% - 20px);
        max-width: 50%;
    }
}