html {
    margin: 0 auto;
    padding: 0;
}

body {
    text-align: center;
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    font-family: 'Roboto', sans-serif;

}

    body h1, h2, h3, h4, h5, p {
        margin: 0 auto;
    }
form {
    display: flex;
    flex: auto;
}
.row {
    display: flex;
    flex-direction:row;
    margin: 0 0 20px 0;
}
.row-main {
    display: flex;
    flex: auto;
    flex-direction: row;
}
.row-main-center {
    display: flex;
    flex: auto;
    flex-direction: row;
    justify-content: center;
}
.card {
    height: 100%;
    margin-bottom:20px;
    padding: 0;
}
/*The background card*/
.card {
    z-index: 0;
    border-radius: 0.5rem;
    position: relative;
}
.col {
    display: flex;
    flex-direction: column;
}

.outerContainer {
    flex-grow: 1;
}

.container {
    display: flex;
    flex: auto;
    flex-direction: column;
}

.container-fluid {
    height: unset;
}

.mainframe {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.mainContent {
    height:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #00457c;
}

.innerContainer {
    width: 60%;
}

.outerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer{
    margin-top: auto;
}
#autoFooter {
    margin-top: 20px;
}

#pnlSingleProduct {
    margin-bottom: 100px;
}

.productSelect {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

/*Background color*/
#grad1 {
    
    background-image: linear-gradient(120deg, #FFF, #81D4FA);
}
.times {
    margin-top: 10px;
}
    .times td {
        margin-right: 5px;
        padding-right: 20px;
        padding-left: 20px;
    }
.times label {
    margin-right: 5px;
}

/*progressbar*/
#progressbar {
    width: 100%;
    justify-content: center;
}

    #progressbar .active {
        color: #000000;
    }

    #progressbar li {
        list-style-type: none;
        font-size: 12px;
        width: 17%;
        float: left;
        position: relative;
    }

    /*Icons in the ProgressBar*/
    #progressbar .item:before {
        font-family: FontAwesome;
        content: "\f1b9";
    }

    #progressbar #progressVehicle:before {
        font-family: FontAwesome;
        content: "\f1b9";
    }
    #progressbar #progressProduct:before {
        font-family: FontAwesome;
        content: "\f02b";
    }

    #progressbar #progressAddons:before {
        font-family: FontAwesome;
        content: "\f02c";
    }

    #progressbar #progressLocation:before {
        font-family: FontAwesome;
        content: "\f041";
    }

    #progressbar #progressSchedule:before {
        font-family: FontAwesome;
        content: "\f073";
    }

    #progressbar #progressSummary:before {
        font-family: FontAwesome;
        content: "\f0f6"
    }

    #progressbar #progressContact:before {
        font-family: FontAwesome;
        content: "\f007";
    }

    #progressbar #progressActivate:before {
        font-family: FontAwesome;
        content: "\f005";
    }
    /*ProgressBar before any progress*/
    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 18px;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px;
    }

    /*ProgressBar connectors*/
    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1;
    }

    /*Color number of the step and the connector before it*/
    #progressbar li.active:before, #progressbar li.active:after {
        background: skyblue;
    }
@media (max-width: 576px) {
    .col {
        padding: 1px;
    }
    .card-body{
        padding-left: 0;
        padding-right: 0;
        overflow:hidden;
    }
    .smallScreen{
        display: none;
    }
    .innerContainer {
        width: 100%;
    }
}