.wind-control-bar {
    background: #f6f8f9;
    border: 1px solid #e9e9e9;
    border-radius: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.wind-control-bar .usa-label {
    color: #1b1b1b;
}

.wind-loading {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.wind-loading.is-active {
    visibility: visible;
    opacity: 1;
}

.wind-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid #c9d8e6;
    border-top-color: #005ea2;
    border-radius: 50%;
    display: inline-block;
    animation: wind-spin 0.8s linear infinite;
}

.wind-loading-text {
    font-size: 0.95rem;
    color: #1f2a33;
}

@keyframes wind-spin {
    to {
        transform: rotate(360deg);
    }
}

#area-hover-box {
    position: absolute;
    /* border: 1px solid hsl(120, 100%, 50%);  */

    border: 2px dotted rgb(5, 5, 5);
    pointer-events: none;
    display: none;
    box-sizing: border-box;
    z-index: 5;
    background-color: rgba(49, 49, 49, 0.68);
}

.usa-label {
    font-size: .95rem !important;
    color: #0a4595 !important;
}

.text-primary {
    color: #0a4595 !important;
}

h1 {
    font-size: 34px !important;
}

area {
    outline: none;
}

area:focus {
    outline: none;
}

.map-spinner {
    color: #0a4595;
}