/* Define custom property types and defaults */
@property --focus-outline-offset {
    syntax: '<length>';
    inherits: false;
    initial-value: 2px;
}
@property --focus-outline-width {
    syntax: '<length>';
    inherits: false;
    initial-value: 2px;
}
@property --focus-outline-color {
    syntax: '<color>';
    inherits: false;
    initial-value: currentColor;
}
@property --skip-link__inset {
    syntax: '<length>';
    inherits: false;
    initial-value: 2px;
}
@property --form-field__border-color {
    syntax: '<color>';
    inherits: false;
    initial-value: currentColor;
}

/* Variables that each site can customize */
@property --go-color--background {
    syntax: '<color>';
    inherits: true;
    initial-value: white;
}
@property --go-color--primary {
    syntax: '<color>';
    inherits: true;
    initial-value: #0d47a1;
}
@property --go-color--navbar-background {
    syntax: '<color>';
    inherits: true;
    initial-value: #0d47a1;
}
@property --go-color--navbar-app-name {
    syntax: '<color>';
    inherits: true;
    initial-value: white;
}
@property --go-color--navbar-button {
    syntax: '<color>';
    inherits: true;
    initial-value: white;
}
@property --go-color--button1-background {
    syntax: '<color>';
    inherits: true;
    initial-value: #0d47a1;
}
@property --go-color--button1-text {
    syntax: '<color>';
    inherits: true;
    initial-value: white;
}
@property --go-color--button2-background {
    syntax: '<color>';
    inherits: true;
    initial-value: #0d47a1;
}
@property --go-color--button2-text {
    syntax: '<color>';
    inherits: true;
    initial-value: white;
}
@property --go-color--header-background {
    syntax: '<color>';
    inherits: true;
    initial-value: #333132;
}
@property --go-color--header-text {
    syntax: '<color>';
    inherits: true;
    initial-value: white;
}
@property --go-color--areaheading-background {
    syntax: '<color>';
    inherits: true;
    initial-value: #9bbad6;
}
@property --go-color--areaheading-text {
    syntax: '<color>';
    inherits: true;
    initial-value: black;
}
@property --go-opacity--button-hover {
    syntax: '<number>';
    inherits: true;
    initial-value: 0.6;
}
@property --go-opacity--area-hover {
    syntax: '<number>';
    inherits: true;
    initial-value: 0.8;
}

:root {
    --color-invalid: #F44336;

    --go-color--background: white;
    --go-color--primary: #0d47a1;
    --go-color--navbar-background: var(--go-color--primary);
    --go-color--navbar-app-name: white;
    --go-color--navbar-button: white;
    --go-color--button1-background: var(--go-color--primary);
    --go-color--button1-text: white;
    --go-color--button2-background: var(--go-color--primary);
    --go-color--button2-text: white;
    --go-color--header-background: #333132;
    --go-color--header-text: white;
    --go-color--areaheading-background: #9bbad6;
    --go-color--areaheading-text: black;
    --go-opacity--button-hover: 0.6;
    --go-opacity--area-hover: 0.8;
}

*,
*::after,
*::before {
    /* Setting a default here for older browsers that don't support @property */
    --focus-outline-width: 2px;
    --focus-outline-offset: 2px;
    --focus-outline-color: currentColor;
}

body:has(dialog[open] .modal-content) {
    /* Prevent scroll when modal is open. Important to override mdb.css */
    overflow: hidden !important;
}

main {
    --focus-outline-offset: -2px;
}

dialog {
    background: none;
    border: 0;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
}

dialog[open] {
    display: flex;
}

dialog::backdrop {
    background: hsla(0, 0%, 0%, 0.5);
}

dialog > * {
    align-self: stretch;
}

.modal-content {
    max-height: 100%;
    overflow: auto;
}

/*
MATERIAL DESIGN BOOTSTRAP EXTENSIONS

The following changes include overrides and direct copy-pastes from MDB to
implement various accessibility fixes. These are fairly brittle, since they rely
on assumptions about the current version of MDB.

TODO: If we have too many of these, consider just upgrading MDB.
*/

.h4 {
    /* All previous headings were h4's, so apply the same styling to .h4 and use
    it to ensure consistent styles even with different heading levels */
    font-size: 2.28rem;
    font-weight: 300;
}

.btn {
    --focus-outline-offset: 2px;
}

input[type=text]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=date]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=search-md]:focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
    /* Remove outline on text inputs since they already have a Material focus
    style */
    --focus-outline-width: 0;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:not(:checked),
[type="radio"]:checked {
    /* Override Material Design Bootstrap default visibility, which renders the
    inputs unable to be focused. Opacity doesn't cause this bug. */
    visibility: visible;
    opacity: 0;
}

[type="checkbox"]:focus-visible + label::before,
[type="radio"]:focus-visible + label::before {
    /* Define outline properties explicitly here since they're applying to an
    element (<label>) that doesn't directly receive focus */
    outline: var(--focus-outline-width) solid var(--focus-outline-color);
    outline-offset: var(--focus-outline-offset);
}

.nav > li > button {
    /* Duplicate MDB nav <a> styling for <button> */
    position: relative;
    display: block;
    padding: 10px 15px;
    line-height: 20px;
}

.dropdown-menu li > button {
    /* Duplicate MDB dropdown menu <a> styling for <button> */
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-size: 1.2rem;
    color: #4285F4;
    display: block;
    padding: 1rem 1rem;
}

input,
select,
textarea {
    --form-field__border-color: #B2B2B2;
}

/* Use :where() to remove extra specificity, since these should have the same
specificity as the defaults they're overriding */
:where(.version-2023-09-26) label {
    color: #757575;
}

:where(.version-2023-09-26) a:where([href]) {
    color: #037DBA;
    text-decoration: underline;
}

:where(.version-2023-09-26) a:where([href]):is(:hover, :focus) {
    text-decoration: underline;
}

:where(.version-2023-09-26) button {
    /* Use background color since text is probably white */
    --focus-outline-color: var(--go-color--primary);
}

:where(.version-2023-09-26) button:focus {
    color: white;
    background-color: var(--go-color--primary);
}

:where(.version-2023-09-26) .btn:is(:hover, :focus, .focus) {
    color: white;
}

.version-2023-09-26 input[type=text],
.version-2023-09-26 input[type=password],
.version-2023-09-26 input[type=email],
.version-2023-09-26 input[type=url],
.version-2023-09-26 input[type=time],
.version-2023-09-26 input[type=date],
.version-2023-09-26 input[type=datetime-local],
.version-2023-09-26 input[type=tel],
.version-2023-09-26 input[type=number],
.version-2023-09-26 input[type=search-md],
.version-2023-09-26 textarea,
.version-2023-09-26 select,
.version-2023-09-26 textarea.valid,
.version-2023-09-26 input[type=text].invalid,
.version-2023-09-26 input[type=text]:focus.invalid,
.version-2023-09-26 input[type=password].invalid,
.version-2023-09-26 input[type=password]:focus.invalid,
.version-2023-09-26 input[type=email].invalid,
.version-2023-09-26 input[type=email]:focus.invalid,
.version-2023-09-26 input[type=url].invalid,
.version-2023-09-26 input[type=url]:focus.invalid,
.version-2023-09-26 input[type=time].invalid,
.version-2023-09-26 input[type=time]:focus.invalid,
.version-2023-09-26 input[type=date].invalid,
.version-2023-09-26 input[type=date]:focus.invalid,
.version-2023-09-26 input[type=datetime-local].invalid,
.version-2023-09-26 input[type=datetime-local]:focus.invalid,
.version-2023-09-26 input[type=tel].invalid,
.version-2023-09-26 input[type=tel]:focus.invalid,
.version-2023-09-26 input[type=number].invalid,
.version-2023-09-26 input[type=number]:focus.invalid,
.version-2023-09-26 input[type=search-md].invalid,
.version-2023-09-26 input[type=search-md]:focus.invalid,
.version-2023-09-26 textarea.materialize-textarea.invalid,
.version-2023-09-26 textarea.materialize-textarea:focus.invalid,
.version-2023-09-26 input[type=text]:focus:not([readonly]),
.version-2023-09-26 input[type=password]:focus:not([readonly]),
.version-2023-09-26 input[type=email]:focus:not([readonly]),
.version-2023-09-26 input[type=url]:focus:not([readonly]),
.version-2023-09-26 input[type=time]:focus:not([readonly]),
.version-2023-09-26 input[type=date]:focus:not([readonly]),
.version-2023-09-26 input[type=datetime-local]:focus:not([readonly]),
.version-2023-09-26 input[type=tel]:focus:not([readonly]),
.version-2023-09-26 input[type=number]:focus:not([readonly]),
.version-2023-09-26 input[type=search-md]:focus:not([readonly]),
.version-2023-09-26 textarea.materialize-textarea:focus:not([readonly]) {
    --focus-outline-width: 2px;
    --focus-outline-offset: 0;
    --focus-outline-color: var(--form-field__border-color);

    box-sizing: border-box;
    display: block;
    height: auto;
    margin-bottom: 0;
    padding: 0.75rem 0.5rem;

    border: 1px solid var(--form-field__border-color);
    border-radius: 2px;
    box-shadow: none;
}

.version-2023-09-26 input.invalid,
.version-2023-09-26 select.ivalid,
.version-2023-09-26 textarea.invalid {
    --form-field__border-color: var(--color-invalid);
}

.version-2023-09-26 input:focus-within {
    outline: var(--focus-outline-width) solid var(--focus-outline-color);
    outline-offset: var(--focus-outline-offset);
}

.version-2023-09-26 select {
    appearance: none;
    width: 100%;
}

.version-2023-09-26 textarea {
    padding-block: 0.75rem;
}

.version-2023-09-26 label:not([type='checkbox'] ~ *, [type='radio'] ~ *) {
    position: static;
    font-size: inherit;
    transform: none;
}

.version-2023-09-26 .input-field {
    margin-top: 1rem;
}
/* END MATERIAL DESIGN BOOTSTRAP EXTENSIONS */

body {
    padding-top: 50px;
}

body.waiting * {
	cursor: progress !important;
}

:focus-visible {
    /* We have to !important due to Material Design Bootstrap. If you're
    overriding these, override the custom properties instead of the actual
    outline properties. */
    outline: var(--focus-outline-width) solid var(--focus-outline-color) !important;
    outline-offset: var(--focus-outline-offset) !important;
}

/* Many elements were divs and now need to be turned into headings, so remove
default heading styles to make them look like divs by default */
.heading-no-style {
    font: inherit;
    margin: 0;
}

/* <button> with its default button styles stripped away so it looks like
regular text */
.text-button {
    /* Use text color since there is no background */
    --focus-outline-color: currentColor;

    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    padding: 0;
    display: inline;
    text-align: start;
}

.text-button:focus {
    color: inherit;
    background: none;
}

/* Util that makes a link inline-block */
.inline-block-link {
    display: inline-block;
}

.inline-block-link,
.inline-block-link:focus {
    text-decoration: none;
}

/* Hidden by default, appears when focused */
.go-skip-link {
    --skip-link__inset: 2px;
    --focus-outline-offset: -2px;

    box-sizing: border-box;
    display: block;
    max-inline-size: calc(100% - 2 * var(--skip-link__inset));
    padding: 10px;

    inset-block-start: var(--skip-link__inset);
    inset-inline-start: var(--skip-link__inset);
    position: absolute;
    transform: translateY(-200%);
    z-index: 1040;
    
    background: white;
}

.go-skip-link:focus {
    transform: translateY(0%);
}

.go-field-error {
    padding: 0;
    color: var(--color-invalid);
    font-size: 0.8em;
    margin-block-start: 0.5em;
}

.go-contact-dialog-actions {
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .container-fluid {
        max-height: 1150px;
        overflow-y: auto;
    }
}

.mdl-list__item {
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: 1.5em;
}

.mdl-list__item a {
    width: 100%;
}


/* Don't display border on desktop when cell is to the right */

@media (min-width: 768px) {
    .mostrequested {
        border-left: 2px solid rgb(64, 196, 255);
        padding-left: 10px;
    }
}

.ui-widget-content a {
    color: #039be5;
}

.mdl-heading-icon {
    font-size: 40px;
    vertical-align: -25%;
    padding-right: 25px;
    color: #666;
}


.required::before {
    content: "* "
}

.toprow {
    margin-bottom: 10px;
}

.searchcell p {
    line-height: 1.2;
    font-size: 17px;
}
.go-faq-search-field {
    margin-bottom: 1rem;
}

.search_header {
    margin-top: 10px;
}
@media (max-width: 768px) {
	.search_header {
		font-size:1.4rem;
	}
}

.faq_header {
    margin-top: 10px;
}

#searchTopicInfo {
    margin: 10px;
}

.input-field .prefix {
    margin-top: 16px;
    color: #aaa;
}

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    float: left;
    display: none;
    min-width: 160px;
    _width: 160px;
    padding: 4px 0;
    margin: 2px 0 0 0;
    list-style: none;
    background-color: #ffffff;
    border-color: #ccc;
    border-color: rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
}

.ui.autocomplete .ui-menu-item a.ui-state-focus {
    background: #ff0000 !important;
}

.ui-state-active, .ui-widget-content .ui-state-active {
    background: inherit;
    border: 1px solid white;
}

.ui-menu-item.ui-state-focus {
    background-color: #00ff00 !important;
}

.ui-state-focus {
    background-color: #00ffff !important;
}

.ui-button.ui-state-active:hover {
    background: #123456;
}

.ui-autocomplete .ui-menu-item>a.ui-corner-all {
    display: block;
    padding: 3px 15px;
    clear: both;
    font-weight: normal;
    line-height: 18px;
    color: #555555;
    white-space: nowrap;
}

.ui-autocomplete .ui-menu-item>a.ui-corner-all.ui-state-hover, .ui-autocomplete .ui-menu-item>a.ui-corner-all.ui-state-active {
    color: #ffffff;
    text-decoration: none;
    background-color: #00ff00;
    #0088cc;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    background-image: none;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-state-active .topicname { 
	background:#0d47a1 !important;
	color: white !important;
}
.ui-state-active .topicdescription {
	color:#ddd;
}

.panel-body {
    padding-bottom: 0px;
}

.panel-primary {
    border-color: #cfd8da;
}

.panel-primary>.panel-heading {
    background-color: rgb(96, 125, 139);
    border-color: #cfd8da;
}

.panel-title {
    font-weight: normal;
}

.panel-group .panel {
	border-bottom:1px solid #ddd;
}

#returnsearch, .areaclick {
	cursor: pointer;
}
.topiclist {
    padding: 0px;
}

.topicitem {
    border-bottom: 1px solid #eee;
}
.topicitem.hoverable:hover {
	opacity: 0.8;
}
.topicitem button {
    --focus-outline-offset: -2px;

    width: 100%;
}

.topicitem-empty {
    font-weight: bold;
    padding: 10px;
}

.topicname {
    font-size: 16px;
    font-weight: 500;
    font-size: 16px;
    color: black;
    padding: 10px 10px 0px 10px;
}

.topicdescription {
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    padding: 0px 10px 10px 10px;
}

.arealists {
    padding: 0px;
}

.areacolumn-left {
    padding-left: 0px;
    padding-right: 5px;
}

@media (min-width: 768px) {
    .areacolumn-left {
        padding-right: 5px;
    }
}

.areacolumn-right {
    padding-left: 0px;
    padding-right: 0px;
}

@media (min-width: 768px) {
    .areacolumn-right {
        padding-right: 0px;
    }
}

.areasection {
    padding-right: 0px;
}

.inarea {
    padding-left: 14px;
}
.groupName {
	margin-left: 5px;
}

.returnpanel {
    padding-top: 5px;
    padding-bottom: 5px;
}

.returnarrow {
    font-weight: 900;
}

.topicaccordion {
    margin-bottom: 0px;
}
.topicaccordion .text-button {
    /* Inset the outline to make it easier to see */
    --focus-outline-offset: -2px;

    display: block;
    width: 100%;
}

.makerequestbutton {
    width: 100%;
}

@media (min-width: 768px) {
    .mostreqcols {
        float: right;
    }
}

.nocontent {
    padding-top: 20px;
    padding-bottom: 20px;
}

.requestsection {
    xmin-height: 550px;
}

#map-container {
    height: 450px;
    margin-bottom: 5px;
}

#map-container-sm,
#map-container-responsive {
    height: 250px;
    margin-bottom: 5px;
}
/* In the latest version, only use the responsive map */
.version-2023-09-26 .go-map-and-legend {
    display: none;
}
.version-2023-09-26 .go-map-and-legend--responsive {
    display: block;
}
@media screen and (min-width: 992px) {
    .go-map-and-legend--responsive {
        /* HACK: Move the map into the right column using absolute positioning.
        This should use CSS grid instead, but that would require a larger layout
        refactor */
        width: 100%;
        position: absolute;
        right: -100%;
        top: 0;
    }

    #map-container-responsive {
        height: 450px;
    }

    .version-2023-09-26 #requestForm .leftside {
        /* HACK: Ensure form footer sits below the map. We have to use magic
        numbers here because the map is absolutely positioned (see above). */
        min-height: 510px;
    }
}
.maplegends {
	text-align: center;
	background: #eee;
	margin-bottom: 10px;
	border:1px solid #ddd;
}
.maplegend {
	margin-right:20px;
}
.maplegend img {
	height: 25px;
}

.requestsection {
    backgrounf: #ccc;
}

.requesttype {
    float: left;
    font-size: 20px;
    margin-top: 15px;
}

.changetopic {
    margin-right: 0px;
}

.photoicon {
    font-size: 36px !important;
}

.faqpanel {
    background: #eee;
}

.faqpanelbody {
    padding-top: 6px;
}

.faqpanelbody div, .requestfaq {
    padding: 0px;
}

.requestfaq {
    overflow-y: hidden;
    text-overflow: ellipsis;
}

.faqtruncated {
    height: 3em;
    xoverflow-y: hidden;
}

.faqexpandbutton {
    margin-top: 0px;
}

.topbuttons {
    border-bottom: 1px solid #ccc;
    text-align: right;
    padding: 0px;
}

@media (min-width: 768px) {
    .searchsection {
        max-height: 500px;
        overflow-y: auto;
    }
    .topicsection {
		max-height: 750px;
		overflow-y: auto;
    }
}


.topbutton {
    margin-top: 3px;
    margin-bottom: 3px;
    margin: 3px;
    xpadding-left: 12px;
    xpadding-right: 12px;
}

.topbutton i {
    margin-right: 5px;
    vertical-align: sub;
}

.footerrow {
    border-top: 1px solid #888;
    padding-top: 20px;
}

.checklegend {
    color: #9e9e9e;
    font-size: 1rem;
    width: inherit;
    margin-bottom: 0px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
}

.input-field label {
    width: 99%;
}

.version-2023-09-26 .input-field label {
    width: auto;
}

#xfileUpload {
    width: 100%;
    height: 100px;
    border: 1px solid #ccc;
}

.xdz-preview {
    width: 50px;
}

.dropzone {
    min-height: 100px;
}

.version-2023-09-26 .dropzone {
    border-width: 1px;
    border-radius: 2px;
}

.dropzone .dz-preview .dz-progress {
    display: none;
}

.dropzone .dz-preview .dz-details {
	padding: 0.5em 1em;
}

.dropzone .dz-message,
.go-upload-button {
    font-weight: bold;
    color: #888;
    margin: 1em 0;
}

.go-upload-button {
    color: #595959;
    cursor: pointer;
    display: block;
    margin-inline: auto;
}

.go-upload-button i {
    font-size: 40px;
    color: #888;
    vertical-align: middle;
    margin-right: 20px;
}

.dropzone .dz-preview .dz-image {
    width: 80px;
    height: 80px;
}

.progress {
    margin-top: 10px;
}

.signininfo {
    border: 2px dashed #ccc;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

#caselogtable {
    width: 100%;
}

@media (min-width: 992px) {
    #log {
        max-height: 700px;
        overflow-y: auto;
    }
}

.logrow {
    border-bottom: 1px solid #ccc;
    color: #6e6e6e;
    cursor: pointer;
}

.logimagecell {
    width: 100px;
}

.logrow:hover {
    background-color: #eee;
}

.lognum {
    margin-right: 10px;
    font-weight: bold;
}

.logimage {
    margin: 2px;
    margin-right: 5px;
}

.logtopic {
    font-weight: bold;
}

.logdescription {
    white-space: nowrap;
    display: table;
    table-layout: fixed;
    width: 100%;
    overflow: hidden;
}
.nologrows {
	margin:20px;
	font-style: italic;
	font-weight: 600;
}

.ratebutton i {
    margin-right: 10px;
    vertical-align: middle;
}

.nav a,
.nav button {
    /* Reduce offset so outline sits inside navbar */
    --focus-outline-offset: -4px;
}

@media (max-width: 768px) {
    .navbar .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar .navbar-nav .open .dropdown-menu > li > button:hover {
        background: #666;
    }
}

@media (min-width: 570px) {
.navbar-header.nocollapse {
	float:left;
}
.navbar-nav.nocollapse {
	float:left;
	margin:0;
}
.navbar-right.nocollapse {
	float: right !important;
	margin-right: -15px;
}
.navbar-toggle.nocollapse {
	display:none;
}
.navbar-collapse.nocollapse {
	display: block !important;
	height: auto !important;
	padding-bottom: 0;
	overflow: visible !important;
	padding-left: 0;
	padding-right: 0;
}
}
.navbar {
    padding: 0;
    padding-top: 4px;
}

.navbar-icon {
    display: inline;
    float: left;
}

.navbar-icon img {
    height: 40px;
    margin-left: 10px;
}

.navcont {
    overflow-y: visible;
    padding-right: 10px;
}

.navbar-toggle {
    border: none;
    padding: 0px;
}

.navbar .navbar-brand {
    height: 20px;
    padding-top: 5px;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    padding-left: 5px;
}
@media (max-width: 768px) {
	.navbar .navbar-brand {
		font-size: 14px;
	}
}

#myNavbar .navbar-nav a:hover,
#myNavbar .navbar-nav button:hover {
    opacity: 0.6;
}

#myNavbar .navbar-nav>li>a,
#myNavbar .navbar-nav>li>button {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
}

.navbar-nav i {
    vertical-align: bottom;
    padding-right: 5px;
    font-size: 18px;
}

.navbar-nav li {
	margin-right:10px;
}
.warningmsg {
	text-align: center;
	font-size:18px;
	color:red;
}


.viewLog:before {
    content: " ";
    margin-right: 20px;
    ;
}

.viewChecked:before {
    content: "\2713   ";
    margin-right: 2px;
}
.accountnav {
	left:0px;
}

#viewTitle {
    font-size: 16px;
}

#viewDescription {
    margin-top: 5px;
    margin-bottom: 5px;
}

#viewAttachments {
    border: 1px solid #999;
    padding: 5px;
}

.viewLogTitle {
    font-weight: bold;
    border-top: 1px solid #ccc;
    margin-top: 5px;
    background: #eee;
    padding-left: 5px;
}

.viewLogMsg {
    padding-left: 15px;
    border-bottom: 1px solid #ccc;
    background: #eee;
}

#surveyForm label {
    font-size: 0.8rem;
}

.surveyradioline td:not(:nth-child(2)) {
    text-align: center;
    padding-right: 10px;
}

.surveyradioline label {
    xpadding-left: 25px;
}

.subinstructions {
	padding-left: 30px;
	padding-right: 30px;
}
.subinstructions p {
	line-height: 1.2;
	font-size: 17px;
}
.subitem {
	border-bottom:1px solid #eee;
	padding: 5px;
}
.subitem:hover {
	background: #eee;
}
.subname {
	font-weight: 500;
	color: black;
	margin-bottom: 0px;
}
.subdescription {
	padding: 0px 10px 10px 36px;
}

.fbor {
	margin: 10px;
}

.fbbutton {
	height: 50px;
	cursor: pointer;
}
.loginicon {
	vertical-align:bottom;
	padding-right:8px;
	font-size:20px;
}

.fbbutton:hover {
	opacity: 0.8;
}

#modalInfo {
	z-index:2000;
}
#google_translate_element {
	float:right;
}
.copyright a {
	color:black;
}

/*
 * Items that can be overridden by each site
 */
 
 #gonavbar {
	background: #0d47a1;
}
#gonavbar .goappname {
	color: white;
}	
#gonavbar .gonavbutton {
	color: white;
	background: inherit;
}
.gobutton1 {
	background: #4285f4;
	color: white;	
}
.gobutton1:hover {
	background: #4285f4;
	color: white;
	opacity: 0.6;
}
.gobutton2 {
	background: #00695c;
	color: white;
}
.gobutton2:hover {
	background: 00695c;
	color: white;
	opacity: 0.6;
}
.goheader {
	background: #2bbbad;
	color: white;
}
.gobackground {
	background: white;
}
.version-2023-09-26 .gobackground input:is([type='date'], [type='time']) {
    background: white;
}
.goareaheading {
    background-color: #ccc;
    color:black;
}
.goareaheading:hover {
	opacity: 0.8;
} 

/* Override with custom props in new version of the styles. Use :where() to
remove extra specificity. */
:where(.version-2023-09-26) #gonavbar {
	background: var(--go-color--navbar-background);
}
:where(.version-2023-09-26) #gonavbar .goappname {
	color: var(--go-color--navbar-app-name);
}	
:where(.version-2023-09-26) #gonavbar .gonavbutton {
	color: var(--go-color--navbar-button);
	background: inherit;
}
:where(.version-2023-09-26) .gobutton1 {
	background: var(--go-color--button1-background);
	color: var(--go-color--button1-text);	
}
:where(.version-2023-09-26) .gobutton1:hover {
	background: var(--go-color--button1-background);
	color: var(--go-color--button1-text);
	opacity: var(--go-opacity--button-hover);
}
:where(.version-2023-09-26) .gobutton2 {
	background: var(--go-color--button2-background);
	color: var(--go-color--button2-text);
}
:where(.version-2023-09-26) .gobutton2:hover {
	background: var(--go-color--button2-background);
	color: var(--go-color--button2-text);
	opacity: var(--go-opacity--button-hover);
}
:where(.version-2023-09-26) .goheader {
	background: var(--go-color--header-background);
	color: var(--go-color--header-text);
}
:where(.version-2023-09-26) .gobackground {
	background: var(--go-color--background);
}
:where(.version-2023-09-26) .goareaheading {
    background-color: var(--go-color--areaheading-background);
    color: var(--go-color--areaheading-text);
}
:where(.version-2023-09-26) .goareaheading:hover {
	opacity: var(--go-opacity--area-hover);
} 

#toast-container-bottom {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}

#toast-container-bottom * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#toast-container-bottom > div {
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#toast-container-bottom > :hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#toast-container-bottom > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#toast-container-bottom > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#toast-container-bottom > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#toast-container-bottom > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#toast-container-bottom.toast-top-full-width > div,
#toast-container-bottom.toast-bottom-full-width > div {
  width: 96%;
  margin: auto;
}

.toast-bottom-right {
	right: 12px;
	bottom: 200px;
}
