.imn-gmap-input-container {
    position: absolute;
    inset: auto auto 5vh 50%;
    transform: translateX(-50%);
    max-width: 660px;
    width: 100%;
    padding: 0 20px;
    margin: auto;
}

.imn-gmap-input-container .field-wrapper {
    margin-right: 20px;
}

.imn-gmap-input-container .p-small {
    text-align: center;
}

label[for="gmap-input"] {
    color: #b8b8b8;
    padding: 0 26px;
    line-height: 50px;
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: inline-block;
    text-align: left;
    text-transform: uppercase;
}

input[type=text].gmap-input {
    width: 100%;
    caret-color: #fff;
    box-sizing: border-box;
    padding: 0 26px;
    line-height: 50px;
    background-color: #151515;
    flex-grow: 1;
    color: #fff;
    font-size: 100%;
    font-family: Roboto, Helvetica, Arial, Verdana, sans-serif;
    font-weight: 700;
    transition: border .4s ease;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: hsla(0, 0%, 100%, .15);
    outline: unset;
}

input[type=text].gmap-input:focus {
    color: #fff;
}

.pac-container,
.pac-matched,
.pac-item-query {
    color: #000;
}

input.gmap-input::placeholder {
    text-transform: uppercase;
    color: #b8b8b8;
    /* padding: 0 26px; */
    line-height: 50px;
    font-size: 12px;
    font-weight: 400;
}

.imn-gmap-wrap {
    display: flex;
}

.imn-gmap-wrap>* {
    flex: 1;
}

button.order-now {
    text-transform: uppercase;
    font-weight: 700;
    min-height: 50px;
    max-width: 30%;
    border-radius: 4px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    line-height: .8rem;
    padding: 0 1em;

    cursor: pointer;
}

.pac-container * {
    color: var(--volta-black-100);
}

/*** GOOGLE AUTOCOMPLETE BOX ***/
.pac-container {
    margin-top: -306px;
}

.loading-spinner {
    display: block;
    margin: 0 auto;
    -webkit-animation: loading-spinner-spin 2s linear infinite;
    animation: loading-spinner-spin 2s linear infinite;
    will-change: transform;
}

.loading-circle {
    stroke-dasharray: 105;
    stroke-dashoffset: 105;
    stroke-linecap: round;
    -webkit-animation: loading-spinner-small 1.7s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    animation: loading-spinner-small 1.7s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    transform: translateZ(0);
    transform-origin: center;
    will-change: stroke-dashoffset;
}

@-webkit-keyframes loading-spinner-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes loading-spinner-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loading-spinner-small {
    0% {
        stroke-dashoffset: 95;
        transform: scaleY(1);
    }

    49.99% {
        stroke-dashoffset: 0;
        transform: scaleY(1);
    }

    50% {
        stroke-dashoffset: 0;
        transform: scaleY(-1) rotate(25deg);
    }

    100% {
        stroke-dashoffset: 95;
        transform: scaleY(-1) rotate(-32deg);
    }
}

@keyframes loading-spinner-small {
    0% {
        stroke-dashoffset: 95;
        transform: scaleY(1);
    }

    49.99% {
        stroke-dashoffset: 0;
        transform: scaleY(1);
    }

    50% {
        stroke-dashoffset: 0;
        transform: scaleY(-1) rotate(25deg);
    }

    100% {
        stroke-dashoffset: 95;
        transform: scaleY(-1) rotate(-32deg);
    }
}

@media (max-width: 768px) {
    .imn-gmap-wrap {
        flex-direction: column;
        margin-top: 5.5rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    button.order-now,
    input[type=text].gmap-input {
        max-width: 100%;
    }

    .imn-gmap-input-container .field-wrapper {
        margin-right: unset;
        margin-bottom: 20px;
    }
}