.d-none {
    display: none !important;
}
#neobookings-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
#neobookings-form .field {
    position: relative;
    width: 33%;
    padding: 0 15px;
}
.close-neobookings-form {
    display: none;
}
.neo-open-mask {
    display: none;
}

@media (max-width: 992px) {
    .close-neobookings-form {
        display: block;
    }

    .neo-open-mask {
        display: block;
        position: fixed;
        top: calc(100vh - 70px);
        left: 0;
        width: 100%;
        height: 70px;
        background-color: var(--primary-color);
        color: #fff;
        margin-top: 0;
    }

    #neobookings-form {
        display: none;
        height: 100vh;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1001;
        background-color: var(--primary-color);
        margin-top: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #neobookings-form.open {
        display: flex;
    }

}