/**
* Theme Name: Aventour Child
* Description: This is a child theme of Aventour, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/themekalia">Theme Kalia</a>
* Template: aventour
* Version: 1.0
*/
div#fleet .categories-block-one .lower-content {
    margin-top: 0px;
}
/* contact form */
/* Main form */
.taxi-booking-form {
    width: 100%;
    box-sizing: border-box;
}

/* Common row */
.booking-row {
    display: grid !important;
    width: 100% !important;
    gap: 25px !important;
    margin-bottom: 25px !important;
}

/* First two rows */
.booking-row-two {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Date/time row */
.booking-row-three {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Form group */
.taxi-booking-form .form-group {
    width: 100% !important;
    min-width: 0 !important;
}

/* Labels */
.taxi-booking-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #294258;
    text-transform: uppercase;
}

/* All fields */
.taxi-booking-form input[type="text"],
.taxi-booking-form input[type="tel"],
.taxi-booking-form input[type="date"],
.taxi-booking-form input[type="time"] {
    width: 100% !important;
    height: 58px !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;

    border: 1px solid #d9dfe6 !important;
    border-radius: 8px !important;

    background: #fff !important;
    font-size: 16px !important;
    color: #555 !important;
}

/* Focus */
.taxi-booking-form input:focus {
    outline: none !important;
    border-color: #8bad31 !important;
}

/* Native time picker */
.native-time-picker {
    cursor: pointer !important;
}

/* Button */
.booking-submit {
    margin-top: 5px;
}

.booking-submit input[type="submit"] {
    background: #8bad31 !important;
    color: #fff !important;

    border: none !important;
    border-radius: 50px !important;

    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 700 !important;

    cursor: pointer;
}

/* Tablet */
@media (max-width: 1024px) {

    .booking-row-three {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}

/* Mobile */
@media (max-width: 767px) {

    .booking-row-two,
    .booking-row-three {
        grid-template-columns: 1fr !important;
    }

}