.indicator:before {
    min-width: 6px;
}
.loaderWrapper {
    margin: auto;
    padding-top: 1rem;
    top: 30%;
    width: 25%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 3rem;
    box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.9);
}
.loader {
    border-radius: 50%;
    width: 6.25rem;
    height: 6.25rem;
    margin: auto;
    font-size: 0.625rem;
    border-top: 0.6875rem solid rgba(150, 150, 150, 0.2);
    border-right: 0.6875rem solid rgba(150, 150, 150, 0.2);
    border-bottom: 0.6875rem solid rgba(150, 150, 150, 0.2);
    border-left: 0.6875rem solid #ffffff;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#loadingText {
    padding: 2rem;
    width: 100%;
    text-align: center;
}
#loadingDiv {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
}
.modal-backdrop.in {
    opacity: 0.5;
}


/**
 * Generic styling for search boxes
 */

.ugs-search-form {
    position: relative;
    max-width: 25rem;
    height: 100%;
}

.ugs-search-input {
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
}

.ugs-search-icon {
    position: absolute;
    right: 0;
    top: 48%;
    transform: perspective(1px) translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
}

.ugs-search-box {
    flex-grow: 1;
    position: relative;
    min-width: 10rem;
    max-width: 25rem;
}

.ugs-search-box > input {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 0.0625rem solid #d1d8dd;
}
