body {
    background: #257cb4;
    font-family: 'Cuprum', sans-serif;
}

.bg-img {
    width: 100%;
    margin: auto;
    z-index: -1;
}

.bg-img img {
    width: 100%;
    z-index: -1;
}

.main-content {
    width: 100%;
    position: absolute;
    top: 10px;
    margin: auto !important;
    box-sizing: border-box;
}

.red-required {
    color: red;
    font-size: 18px;
}

.search-label.search-label {
    color: black;
    font-size: 0.8em;
    padding-bottom: 5px
}

.main-contain {
    width: 75%;
    margin: auto;
    background: white;
    background-image: url(../images/wire-frame-car-background-3.png);
    margin-top: 7px;
    box-shadow: 9px 9px 50px 3px rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    margin-bottom: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
    max-width: 1200px;
}

@media (max-width: 50em) {
    .main-contain {
        width: 90%;
    }
}

.logo-img {
    width: 100%;
    text-align: center;
}

.spot {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.svg-wrapper {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: 40px;
    display: inline-block;
    border-radius: 3px;
    background: #257cb4;
}

#shape {
    stroke-width: 15px;
    fill: transparent;
    stroke-dasharray: 85 400;
    stroke-dashoffset: -220;
    transition: 2s all ease;
}

#text {
    margin-top: -35px;
    text-align: center;
}

#text {
    color: white;
    text-decoration: none;
    font-weight: 100;
    font-size: 1.1em;
}

@media (max-width: 37.5em) {
    #text {
        color: white;
        text-decoration: none;
        font-weight: 100;
        font-size: 22px;
    }
}

.svg-wrapper:hover #shape {
    stroke-dasharray: 50 0;
    stroke-width: 3px;
    stroke-dashoffset: 0;
    stroke: yellow;
}

input[type=text],
textarea,
select,
input[type=password] {
    border: 1px solid #bbb;
    padding: 0.7em 0.4em;
    font-size: 0.75em;
    background: #fff;
    color: #333;
    border-radius: 4px;
    -webkit-transition: box-shadow 0.2s;
    transition: box-shadow 1.2s;
    border-radius: 7px;
}

input[type=text]:hover,
textarea:hover,
select:hover,
input[type=text]:focus,
textarea:focus,
select:focus,
input[type=password]:hover,
input[type=password]:focus {
    outline: none;
    border-color: #257cb4;
    border: 2px solid #257cb4;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
    background: #e3e7ea;
}

.search-label.search-label {
    display: -webkit-box;
    padding-top: 10px;
    padding-bottom: 0px;
    font-size: 16px;
    margin-bottom: 1px;
}

label {
    font-size: 16px;
    color: black;
}

/* Container row to center contents */
.locator-search {
    display: grid;
    justify-content: center;
    margin: 0;
}
.locator-search-row {
    width: 100%;
}
/* Cell styling */
.locator-cell {
    max-width: 800px;
    margin: 0 0 0 2em;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Label styling */
.search-label {
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}

/* Input + select styling */
.locator-cell select,
.locator-cell input[type="text"] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    min-width: 57em;
}

/* Responsive: Tablet and below */
@media screen and (max-width: 991px) {
    .locator-search {
        display: flex;
        justify-content: center;
    }
    .locator-cell {
        width: 100%;
        padding: 0 10px;
        margin: 0;
    }
    .locator-cell select,
    .locator-cell input[type="text"] {
        max-width: 100%;
        min-width: 100%;
    }
}