
.page-header {
    padding: 1em;
}

.hero-header {
    color: white;
    padding: 4em 10em;
    background-image: url(../images/hero-image.jpg);
    background-size: cover;
    background-position: center center;
    box-shadow: inset 0px 4px 5px rgb(0 0 0 / 15%);
}

@media (max-width: 767px) {
    .hero-header {
        background-image: url(../images/hero-image-mobile.jpg);
        font-size: 1.5em;
    }
}

.hero-header h1 {
    font-family: 'Roboto', system-ui, Arial, sans-serif;
    font-size: 4em;
    font-weight: 300;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden !important;
}

/* Form controls */

.formatted-address {
    border-radius: 4px;
    line-height: 24px;
    margin: 5px auto;
}

    .formatted-address h3 {
        color: #00be8b;
        font-size: 2em;
        font-family: Arial, sans-serif;
        line-height: 1.1;
        margin: 0 auto 10px;
    }

.ua-banner {
    background: #fcf8e3;
    border-bottom: 1px solid #ffb321;
    padding: 1em 0;
    text-align: center;
}

/* Secondary panel */
.search-type-panel {
    margin-right: 1em;
    margin-bottom: 1em;
    flex: 1;
    min-width: var(--min-width);
}

    .search-type-panel .header {
        font-size: 14px;
        margin: 0;
    }

    .search-type-panel .search-type-selector {
        cursor: pointer;
        margin-top: 0;
        margin-bottom: 1px;
        padding: 1em;
        color: #333;
        background-color: #eaeaea;
    }

.search-type-selector:hover {
    background-color: #f6f6f6;
}

.search-type-panel .search-type-selected {
    border-left: 3px solid #e63888;
    background-color: #fff1fa;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fade {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

/* Media queries */

@media (max-width: 480px) {
    /* Reduce horizontal padding */
    .hero-header {
        padding: 1em;
    }

        .hero-header h1 {
            font-size: 1.5em;
        }
}

.addressValidationSuccess {
    color: green;
    font-weight: 600;
    font-size: 13px;
}

.addressValidationFailed {
    color: red;
    font-weight: 600;
    font-size: 13px;
}
