<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*@media(max-width:768px) {
            .esri-search {
                width:140px;
            }
        }*/
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.loadingcontainer {
    padding: 6px 0 0;
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #808080; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.nav &gt; li, .nav &gt; li &gt; a {
    display: inline;
    margin-bottom: 10px;
}

.nav-tabs &gt; li.active &gt; a, .nav-tabs &gt; li.active &gt; a:focus, .nav-tabs &gt; li.active &gt; a:hover {
    box-shadow: rgb(76,76,76) 0 -2px 0 0 !important;
}
/*.calcite-panels.calcite-bg-custom .nav-tabs&gt;li.active&gt;a  {
            border-top: 2px solid #4c4c4c !important;
        }*/

.esri-search__input-container {
    border-bottom: 2px solid red;
}      

input {
  outline: none;
}
a[href^="tel:"] {
  text-decoration: none;
}



::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: red !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: red !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: red !important;
}

::-webkit-input-placeholder {
    color:red !important;
}
</pre></body></html>