
.select-property-type-section {
    display: flex;
    flex-flow: row wrap;
}

.select-property-type-section > div {
    flex: 1;
    /*padding: 0.5rem;*/
}

.select-property-input {
    display: none;
}

    .select-property-input:not(:disabled) ~ label {
        cursor: pointer;
    }

    .select-property-input:disabled ~ label {
        color: rgba(188, 194, 191, 1);
        border-color: rgba(188, 194, 191, 1);
        box-shadow: none;
        cursor: not-allowed;
    }

.property-type-label {
    border-radius: 8px;
    border: 1px solid #DDDDDD;
    height: 100%;
    display: block;
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.select-property-input:checked + label {
    border: 1px solid transparent;
    outline: 2px solid var(--headings-color);
    color: var(--headings-color);
}


    .select-property-input:checked + label::after {
        color: #3d3f43;
        font-family: FontAwesome;
        border: 2px solid #212529;
        content: "\2713";
        font-size: 24px;
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        height: 50px;
        width: 50px;
        line-height: 50px;
        text-align: center;
        border-radius: 50%;
        background: white;
        box-shadow: 0px 2px 5px -2px rgb(0 0 0 / 25%);
    }

@media only screen and (max-width: 700px) {
    section {
        flex-direction: column;
    }
}







input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.number-input {
    border: 0;
    display: inline-flex;
}

    .number-input,
    .number-input * {
        box-sizing: border-box;
    }

        .number-input button {
            outline: none;
            -webkit-appearance: none;
            background-color: transparent;
            border: none;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            cursor: pointer;
            margin: 0;
            position: relative;
            box-shadow: 0px 0px 1px #474747;
            border-radius: 50%;
        }

            .number-input button:before,
            .number-input button:after {
                display: inline-block;
                position: absolute;
                content: '';
                width: 1rem;
                height: 2px;
                background-color: #212121;
                transform: translate(-50%, -50%);
            }

            .number-input button.plus:after {
                transform: translate(-50%, -50%) rotate(90deg);
            }

        .number-input input[type=number] {
            font-family: sans-serif;
            max-width: 5rem;
            padding: .5rem;
            border: none;
            border-width: 0 2px;
            font-size: 2rem;
            height: 3rem;
            font-weight: bold;
            text-align: center;
            color: #9be3df;
        }






.file-input {
    border-radius: 8px;
    border: 1px solid #DDDDDD;
    box-shadow: none;
    font-size: 14px;
    height: 55px;
    outline: none;
    overflow: hidden;
}

    .file-input > [type='file'] {
        position: absolute;
        width: max-content;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 10;
        cursor: pointer;
    }

.select-files-button {
    display: inline-block;
    cursor: pointer;
    background: #EB6753;
    padding: 16px;
    margin-right: 8px;
    color: white;
    height: 100%;
    border-bottom-left-radius:8px;
    border-top-left-radius:8px;
}


.file-input > .select-files-label {
    color: #212529;
    white-space: nowrap;
}




