/* =========================================
   AAYUSH CAR RENTAL
   VEHICLE BOOKING FORM
   THEME: RED + BLACK + WHITE
========================================= */

.acr-vehicle-booking {
    width: 100%;
    padding: 30px 15px;
    background: #f5f5f5;

    font-family: 'Montserrat', Arial, sans-serif;

    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.acr-vb-container {
    max-width: 900px;
    margin: 0 auto;

    background: #ffffff;

    border-radius: 3px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.10);

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.acr-vb-header {
    display: flex;
    align-items: center;

    min-height: 110px;

    padding: 20px 25px;

    background: #111111;

    border-bottom: 3px solid #e00000;

    box-sizing: border-box;
}


.acr-vb-header-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    margin-right: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e00000;

    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;
}


.acr-vb-header h2 {
    margin: 0 0 6px 0;

    color: #ffffff !important;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.2;

    visibility: visible;
    opacity: 1;
}


.acr-vb-header p {
    margin: 0;

    color: #cccccc;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   FORM BODY
========================================= */

.acr-vb-body {
    padding: 25px 30px 30px 30px;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================
   FORM ROW
========================================= */

.acr-vb-row {
    display: flex;
    align-items: center;

    margin-bottom: 14px;

    width: 100%;
}


.acr-vb-row label {
    width: 160px;

    flex: 0 0 160px;

    padding-right: 15px;

    text-align: right;

    color: #111111;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.4;

    box-sizing: border-box;
}


/* =========================================
   INPUT / SELECT / TEXTAREA
========================================= */

.acr-vb-row input,
.acr-vb-row select,
.acr-vb-row textarea {

    width: 100%;

    padding: 9px 12px;

    border: 1px solid #cccccc;

    border-radius: 0;

    background: #ffffff;

    color: #333333;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 11px;

    outline: none;

    box-sizing: border-box;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}


.acr-vb-row input,
.acr-vb-row select {
    height: 40px;
}


.acr-vb-row textarea {

    min-height: 75px;

    resize: vertical;

    line-height: 1.5;
}


/* Placeholder */

.acr-vb-row input::placeholder,
.acr-vb-row textarea::placeholder {

    color: #999999;

    opacity: 1;
}


/* Focus */

.acr-vb-row input:focus,
.acr-vb-row select:focus,
.acr-vb-row textarea:focus {

    border-color: #e00000;

    box-shadow: 0 0 0 2px rgba(224, 0, 0, 0.08);
}


/* =========================================
   TEXTAREA ROW
========================================= */

.acr-vb-textarea-row {

    align-items: flex-start;
}


.acr-vb-textarea-row label {

    padding-top: 10px;
}


/* =========================================
   SUBMIT
========================================= */

.acr-vb-submit {

    padding-left: 160px;

    margin-top: 5px;

    box-sizing: border-box;
}


.acr-vb-submit button {

    width: 100%;

    height: 44px;

    border: none;

    border-radius: 2px;

    background: #e00000;

    color: #ffffff;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: all 0.25s ease;
}


.acr-vb-submit button span {

    margin-right: 7px;

    font-size: 12px;
}


.acr-vb-submit button:hover {

    background: #111111;

    color: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .acr-vehicle-booking {

        padding: 15px 10px;

    }


    .acr-vb-container {

        width: 100%;

        border-radius: 2px;

    }


    /* Header */

    .acr-vb-header {

        min-height: auto;

        padding: 18px 15px;

    }


    .acr-vb-header-icon {

        width: 38px;
        height: 38px;

        flex: 0 0 38px;

        margin-right: 10px;

        font-size: 17px;

    }


    .acr-vb-header h2 {

        font-size: 19px;

    }


    .acr-vb-header p {

        font-size: 10px;

    }


    /* Body */

    .acr-vb-body {

        padding: 20px 15px 25px 15px;

    }


    /* Rows */

    .acr-vb-row {

        display: block;

        margin-bottom: 15px;

    }


    .acr-vb-row label {

        display: block;

        width: 100%;

        padding: 0;

        margin-bottom: 6px;

        text-align: left;

        font-size: 11px;

    }


    .acr-vb-row input,
    .acr-vb-row select {

        width: 100%;

        height: 42px;

    }


    .acr-vb-row textarea {

        width: 100%;

        min-height: 85px;

    }


    .acr-vb-textarea-row label {

        padding-top: 0;

    }


    /* Submit */

    .acr-vb-submit {

        padding-left: 0;

        margin-top: 8px;

    }


    .acr-vb-submit button {

        height: 45px;

    }

}