﻿/* #region body styles */

body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: sans-serif !important;
    opacity: 1;
}

.site-body-content {
    background: white;
    border-radius: 10px;
    /* Set padding to keep content from hitting the edges */
    padding-left: 0px;
    padding-right: 0px;
    opacity: 1;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column */
/* not used, seems obsolete as of Dec 2024
.dl-horizontal dt {
    white-space: normal;
}
*/

/* #endregion */

/* #region general custom styles */

a.site-link-s {
    color: #555 !important;
    margin-left: 20px !important;
    font-size: small !important;
    text-decoration: none !important;
    text-align: left !important;
}

    a.site-link-s:link,
    a.site-link-s:focus,
    a.site-link-s:visited {
        color: #555 !important;
        margin-left: 20px !important;
        font-size: small !important;
        text-decoration: none !important;
        text-align: left !important;
    }

    a.site-link-s:hover,
    a.site-link-s:active {
        color: #c00 !important;
        margin-left: 20px !important;
        font-size: small !important;
        text-decoration: none !important;
        text-align: left !important;
    }

a.site-link-m {
    color: #555 !important;
    margin-left: 20px !important;
    font-size: medium !important;
    text-decoration: none !important;
    text-align: left !important;
}

    a.site-link-m:link,
    a.site-link-m:focus,
    a.site-link-m:visited {
        color: #555 !important;
        margin-left: 20px !important;
        font-size: medium !important;
        text-decoration: none !important;
        text-align: left !important;
    }

    a.site-link-m:hover,
    a.site-link-m:active {
        color: #c00 !important;
        margin-left: 20px !important;
        font-size: medium !important;
        text-decoration: none !important;
        text-align: left !important;
    }

a.site-link-l {
    color: #555 !important;
    margin-left: 20px !important;
    font-size: large !important;
    text-decoration: none !important;
    text-align: left !important;
}

    a.site-link-l:link,
    a.site-link-l:focus,
    a.site-link-l:visited {
        color: #555 !important;
        margin-left: 20px !important;
        font-size: large !important;
        text-decoration: none !important;
        text-align: left !important;
    }

    a.site-link-l:hover,
    a.site-link-l:active {
        color: #c00 !important;
        margin-left: 20px !important;
        font-size: large !important;
        text-decoration: none !important;
        text-align: left !important;
    }

a.site-glyph {
    color: #336699 !important;
    margin-left: 20px !important;
    font-size: large !important;
    text-decoration: none !important;
    text-align: left !important;
}

    a.site-glyph:link,
    a.site-glyph:focus,
    a.site-glyph:visited {
        color: #336699 !important;
        margin-left: 20px !important;
        font-size: large !important;
        text-decoration: none !important;
        text-align: left !important;
    }

    a.site-glyph:hover,
    a.site-glyph:active {
        color: #c00 !important;
        margin-left: 20px !important;
        font-size: large !important;
        text-decoration: none !important;
        text-align: left !important;
    }

.site-glyph-red {
    color: firebrick !important;
}

/* #endregion */

/* #region general layout styles */

.site-name-line-1 {
    padding: 0px;
    line-height: 12px;
    color: gray;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.site-legal-text {
    margin-left: 10px;
    margin-right: 10px;
    color: gray;
    font-size: 10px;
    font-weight: normal;
    text-decoration: none;
}

.site-legal-link {
    color: gray;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
}

/* #endregion */

/* #region main navigation styles */

/* very important: this is being set so that the navbar dropdowns are not transparent */
.site-header {
    position: absolute;
    z-index: 999;
    opacity: 1;
    top: 0px;
}

.site-nav {
    position: fixed;
    top: 0px;
    width: 100%;
    /* min-height (vs height) will keep collapse dropdown from being 
       transparent,that is, it will allow it to grow
    */
    min-height: 50px;
    font-family: sans-serif !important;
    padding-top: 0px;
    padding-bottom: 0px;
    border: 0px;
    /* 
    margin: 0px;
    */
}

.site-nav-item {
    white-space: nowrap;
    margin-top: 2px;
    margin-left: 20px;
    font-family: sans-serif !important;
    font-size: 14px;
}

/* site-nav-link replaces bootstrap nav-link as padding is messing up the desired height */
.site-nav-link {
    display: block;
    color: aliceblue !important; /* changed for this site */
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .site-nav-link {
        transition: none;
    }
}
.site-nav-link:hover, .site-nav-link:focus {
    color: #FFEB00 !important; /* changed for this site */
}
.site-nav-link.disabled {
    color: dimgray !important; /* changed for this site */
    pointer-events: none;
    cursor: default;
}
/* end site-nav-link override of nav-link */

/* #endregion */

/* #region dropdown menu styles */

.site-dropdown-menu {
    background-color: #ffffff;
    opacity: 1 !important;
    z-index: 999 !important;
    /* delete after 2025-07-31
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    */
}

.site-dropdown-heading {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: -5px !important;
    line-height: 25px;
    color: gray;
    font-size: 15px;
    font-weight: bold;
    text-decoration: underline;
    white-space: nowrap;
}

.site-dropdown-message {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: -5px !important;
    line-height: 25px;
    color: lightgray;
    font-size: 13px;
    font-weight: bold;
    font-style: italic;
    white-space: nowrap;
}

.site-dropdown-divider {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    line-height: 5px;
    height: 0px; 
    border: none; 
    border-top: 2px solid gray;
}

.site-dropdown-item {
    color: #337ab7;      /* #2d6b9f darker*/
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* #endregion */

/* #region lookup navigation styles */

.site-nav-lookup {
    font-family: sans-serif !important;
    position: fixed;
    top: 48px;
    width: 100%;
    /* min-height (vs height) will keep collapse dropdown from being 
       transparent,that is, it will allow it to grow */
    min-height: 0px;
    background-color: darkgray;
    border: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    vertical-align: middle;
    white-space: nowrap;
    z-index: 990;
    opacity: 1;
    /* delete after 2025-07-31 
    border-bottom-color: gray;
    margin-bottom: 20px;
    min-height: 40px;
    */
    /* delete after 2025-07-31 - these made no difference to the lookup bar behavior
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scroll-margin-top: 100px;
    */
}

.site-nav-lookup-pac {
    white-space: nowrap;
    margin-top: 2px;
    margin-right: 50px;
    margin-bottom: 2px;
    padding-top: 0px;
    padding-bottom: 0px;
    /* delete after 2025-07-31 
    margin-bottom: 10px;
    padding-top: 15px;
    font-family: sans-serif !important;
    */
}

.site-nav-lookup-item {
    white-space: nowrap;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    /* delete after 2025-07-31 
    margin-top: 15px;
    margin-left: 30px;
    font-family: sans-serif !important;
    */
}

.site-nav-lookup-button {
    width: 70px;
    height: 25px;
    font-size: 14px;
    margin-left: 0px;
    margin-top: 7px;
    margin-bottom: -10px;
    padding-top: 0px;
    padding-bottom: 0px;
    /* delete after 2025-07-31 
    margin-bottom: 7px;
    margin-left: 30px;
    max-height: 24px;
    font-family: Arial, Helvetica, sans-serif; 
    padding-top: 2px;
    padding-bottom: 2px;
    */
    vertical-align: middle;
    padding-top: 2px;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid #007788;
    border-radius: 5px;
    background-color: white;
}

.site-nav-lookup-message {
    white-space: nowrap;
    font-style: italic;
    font-size: 14px;
    color: white;
    margin-top: 8px;
    margin-bottom: 0px;
}

a.site-nav-lookup-message:link,
a.site-nav-lookup-message:focus,
a.site-nav-lookup-message:visited,
a.site-nav-lookup-message:hover,
a.site-nav-lookup-message:active {
    white-space: nowrap;
    font-style: italic;
    font-size: 14px;
    color: white;
    margin-top: 8px;
    margin-bottom: 0px;
    text-decoration: none;
}

a.site-nav-lookup-icon:link,
a.site-nav-lookup-icon:focus,
a.site-nav-lookup-icon:visited,
a.site-nav-lookup-icon:hover,
a.site-nav-lookup-icon:active {
    white-space: nowrap;
    font-size: 18px;
    /* alternate blue/cyan website's color
    color: #007788; */
    color: #f00000;
    margin-top: 10px;
    margin-bottom: 0px;
    text-decoration: none;
}

/* #endregion */

/* #region tabbed view  styles*/

.site-nav-tabs {
    white-space: nowrap;
    top: 32px;
    min-height: 0px;
    /* delete after 2025-07-31 
    position: fixed;
    font-family: sans-serif !important;
    width: 100%;
    height: 45px;
    max-height: 45px;
    background-color: darkgray;
    border: 0px;
    padding-top: 0px;
    border-radius: 0;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    vertical-align: middle;

    border-bottom-color: gray;
    margin-bottom: 20px;
    min-height: 40px;
    */
    /* delete after 2025-07-31 - these made no difference to the lookup bar behavior
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scroll-margin-top: 100px;
    */
}

.site-nav-tabs-column {
    padding-left: 0;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 0;
}

.site-nav-tabs-selected {
    width: 80px;
    height: 35px !important;
    margin-left: 16px;
    padding-top: 10px !important;
    padding-bottom: 15px !important;
    background-color: #337ab7;
    color: #fff;
    border-left-color: #2e6da4;
    border-top-color: #2e6da4;
    border-right-color: #2e6da4;
    border-bottom-color: #aaaaaa;
    font-size: 14px;
    font-weight: bold;
}

    .site-nav-tabs-selected:focus,
    .site-nav-tabs-selected.focus {
        background-color: #286090 !important;
        color: #fff;
        border-left-color: #122b40;
        border-top-color: #122b40;
        border-right-color: #122b40;
        border-bottom-color: #aaaaaa;
    }

    .site-nav-tabs-selected:hover {
        background-color: #286090 !important;
        color: #fff;
        border-left-color: #122b40;
        border-top-color: #122b40;
        border-right-color: #122b40;
        border-bottom-color: #aaaaaa;
    }

.site-nav-tabs-default {
    width: 80px;
    height: 35px !important;
    margin-left: 16px;
    padding-top: 10px !important;
    padding-bottom: 15px !important;
    background-color: #aaaaaa;
    color: #fff;
    border-left-color: #888888;
    border-top-color: #888888;
    border-right-color: #888888;
    border-bottom-color: #aaaaaa;
    font-size: 14px;
    font-weight: bold;
}

    .site-nav-tabs-default:focus,
    .site-nav-tabs-default.focus {
        background-color: #9a9a9a !important;
        color: #fff;
        border-left-color: #666699;
        border-top-color: #666699;
        border-right-color: #666699;
        border-bottom-color: #aaaaaa;
    }

    .site-nav-tabs-default:hover {
        background-color: #9a9a9a !important;
        color: #fff;
        border-left-color: #666699;
        border-top-color: #666699;
        border-right-color: #666699;
        border-bottom-color: #aaaaaa;
    }

/* delete after 2025-07-31
.site-nav-tabs-default {
    width: 120px;
    color: #333;
    background-color: #fff;
    border-color: #ccc;
    font-weight: bold;
}

    .site-nav-tabs-default:focus,
    .site-nav-tabs-default.focus {
        color: #333;
        background-color: #e6e6e6;
        border-color: #8c8c8c;
    }

    .site-nav-tabs-default:hover {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;
    }
*/

/* #endregion */

/* #region styles for search box */

.searchText {
    margin: 0;
    max-width: 250px;
    height: 32px;
    padding: 5px 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    border: 1px solid #999999;
    border-right: 1px solid;
    border-top-left-radius: 5px 5px;
    border-bottom-left-radius: 5px 5px;
}

.searchButton {
    margin: 0;
    width: 30px;
    height: 32px;
    padding: 5px 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #007788;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: 1px solid #999999;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
    background-color: white;
}

    .searchButton:hover {
        margin: 0;
        text-decoration: none;
        /* image-orientation: */
    }

    .searchButton::-moz-focus-inner
    /* Fixes submit button height problem in Firefox */ {
        margin: 0;
        border: 0;
    }

.searchClear {
    margin: 0;
    width: 30px;
    height: 32px;
    padding: 5px 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #007788;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: 1px solid #999999;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
    background-color: white;
    border-top-right-radius: 5px 5px;
    border-bottom-right-radius: 5px 5px;
}

    .searchClear:hover {
        margin: 0;
        text-decoration: none;
    }

    .searchClear::-moz-focus-inner
    /* Fixes submit button height problem in Firefox */ {
        margin: 0;
        border: 0;
    }

/* #endregion */

/* #region styles for favorites and "more" pages */

.site-channel-heading-left {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    color: gray !important;
    text-align: left !important;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-channel-heading-center {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    color: gray !important;
    text-align: center !important;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-channel-heading-center-wrap {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    color: gray !important;
    text-align: center !important;
    text-decoration: none;
    line-height: 1.0;
}

.site-channel-detail-left {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 500; 
    font-family: sans-serif;
    color: black !important;
    text-align: left !important;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-channel-detail-left-wrap {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: sans-serif;
    color: black !important;
    text-align: left !important;
    text-decoration: none;
    line-height: 1.0;
}

.site-channel-detail-center {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 500; 
    font-family: sans-serif;
    color: black !important;
    text-align: center !important;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-channel-detail-center-wrap {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: sans-serif;
    color: black !important;
    text-align: center !important;
    text-decoration: none;
    line-height: 1.0;
}

.site-channel-icon-navy {
    padding-left: 10px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: sans-serif;
    color: black !important;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-channel-icon-red {
    padding-left: 10px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: sans-serif;
    color: black !important;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-channel-detail-name {
    padding-left: 10px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: sans-serif;
    color: navy !important;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-favorite-state {
    color: navy;
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;
    padding-top: 0px;
    white-space: nowrap;
}

.site-favorite-location {
    line-height: 18px;
    padding-top: 5px;
    white-space: nowrap;
    text-decoration: none;
}

.site-favorite-name {
    padding-left: 10px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: sans-serif;
    color: navy !important;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

/* #endregion */

/* #region forecast report styles */

.site-forecast-top {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
}

.site-forecast-title {
    font-weight: bold;
    font-size: 20px;
    color: dimgrey;
    margin-left: 5px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.site-forecast-dates {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: 10px;
    margin-top: -5px;
    margin-bottom: 0px;
    line-height: 10px;
    color: gray;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
}

.site-forecast-line {
    padding-left: 0px;
    padding-right: 0px;
    color: gray;
    white-space: nowrap;
}

.site-forecast-heading-left {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 16px;
    font-weight: 700; /* bold */
    font-family: sans-serif;
    color: black !important;
    text-align: left !important;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-forecast-heading-center {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 16px;
    font-weight: 700; /* bold */
    font-family: sans-serif;
    color: black !important;
    text-align: center !important;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.0;
}

.site-forecast-day {
    padding-left: 10px;
    padding-right: 0px;
    font-size: 15px;
    font-weight: 500; /* medium */
    font-family: sans-serif;
    color: black !important;
    text-align: center !important;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}

.site-forecast-wrap {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    font-weight: 500; /* medium */
    font-family: sans-serif;
    color: black !important;
    text-align: left !important;
    vertical-align: middle;
    text-decoration: none;
    overflow-wrap: normal;
}

.site-forecast-left {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    font-weight: 500; /* medium */
    font-family: sans-serif;
    color: black !important;
    text-align: left !important;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}

.site-forecast-center {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    font-weight: 500; /* medium */
    font-family: sans-serif;
    color: black !important;
    text-align: center !important;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}

.site-todays-period {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 700; /* bold */
    font-family: sans-serif;
    color: black;
    text-align: left !important;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}

.site-todays-temp {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 24px;
    font-weight: 700; /* bold */
    font-family: sans-serif;
    color: navy;
    text-align: center !important;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}

.site-todays-center {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 500; /* medium */
    font-family: sans-serif;
    color: black !important;
    text-align: center !important;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}

.site-forecast-temp {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    font-weight: 700; /* bold */
    font-family: sans-serif;
    color: black;
    text-align: center !important;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}

.site-forecast-date {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    font-weight: 700; /* bold */
    font-family: sans-serif;
    color: navy;
    text-align: left !important;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}

.site-forecast-alert-topic {
    padding-left: 0px;
    padding-right: 10px;
    font-size: 13px;
    font-family: sans-serif;
    font-weight: bold;
    color: black !important;
    vertical-align: top;
    text-align: left !important;
    text-decoration: none;
    white-space: nowrap;
    white-space: nowrap;
}

.site-forecast-alert-content {
    padding-left: 0px;
    padding-right: 10px;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: normal;
    /* color: black !important; */
    vertical-align: top;
    text-align: left !important;
    text-decoration: none;
    /* wrap is allowed */
}

.site-forecast-map-form {
    color: navy;
    font-weight: bold;
    font-size: 16px;
}

.site-forecast-map-radio {
    color: dimgray;
    font-weight: bold;
    font-size: 14px;
}

/* #endregion */

/* #region styles for field tooltips */

/*
    Tooltips can be added to controls with attribute in HTML.ActionLink or elsewhere as follows:
        title = "Tooltip text"
    
    For fancier tooltips, can use:

    Reference: https://www.w3schools.com/css/css_tooltip.asp#:~:text=Basic%20Tooltip&text=HTML%3A%20Use%20a%20container%20element,with%20class%3D%22tooltiptext%22%20.
    Example:
        <div class="tooltip">Hover over me
          <span class="tooltiptext">Tooltip text</span>
        </div>
*/

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

/* #endregion */

/* #region Google Maps autocomplete custom styles */

/* Reference: https://developers.google.com/maps/documentation/javascript/place-autocomplete */

#infowindow-content .title {
    font-weight: bold;
}

#infowindow-content {
    display: none;
}

#map #infowindow-content {
    display: inline;
}

#infowindow-title {
    color: #fff;
    background-color: #4d90fe;
    font-size: 25px;
    font-weight: 500;
    padding: 6px 12px;
}

.pac-card {
    background-color: #fff;
    border: 1px;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    font-family: Roboto;
    padding: 0;
    z-index: 9;
}

#pac-container {
    padding-bottom: 12px;
    margin-right: 12px;
    z-index: 999;
}

    /* to remove Powered by Google */
    #pac-container:after {
        visibility: hidden !important;
        position: absolute;
        top: -9999px;
        left: -9999px;
        opacity: 0;
        width: 0;
        height: 0;
    }

.pac-controls {
    display: inline-block;
    padding: 5px 11px;
}

    .pac-controls label {
        font-family: Roboto;
        font-size: 13px;
        font-weight: 300;
    }

#pac-input {
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 300;
    /*
    margin-left: 12px;
    padding: 0 11px 0 13px;
    z-index: 999;
    */
    width: 400px;
    text-overflow: ellipsis;
    width: 100%;
}

    #pac-input:focus {
        border-color: #000;
        z-index: 999;
    }

.lookupInput {
    max-width: 250px;
    height: 34px;
    /*
    padding: 10px 10px 5px 10px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    */
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #007788;
    border-top-left-radius: 5px 5px;
    border-bottom-left-radius: 5px 5px;
    z-index: 999;
}

.lookupClear {
    /*
    margin: 0;
    padding: 11px 5px 9px 12px;
    */
    height: 34px;
    width: 34px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #007788;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    border: solid 1px #007788;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
    background-color: white;
    border-top-right-radius: 5px 5px;
    border-bottom-right-radius: 5px 5px;
}

/* #endregion */

/* file uplode with drag and drop */
/* 

.files input {
    outline: 2px dashed #92b0b3;
    outline-offset: -10px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    padding: 120px 0px 85px 35%;
    text-align: center !important;
    margin: 0;
    width: 100% !important;
}

    .files input:focus {
        outline: 2px dashed #92b0b3;
        outline-offset: -10px;
        -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
        transition: outline-offset .15s ease-in-out, background-color .15s linear;
        border: 1px solid #92b0b3;
    }

.files {
    position: relative
}

    .files:after {
        pointer-events: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 50px;
        right: 0;
        height: 56px;
        content: "";
        background-image: url(https://image.flaticon.com/icons/png/128/109/109612.png);
        display: block;
        margin: 0 auto;
        background-size: 100%;
        background-repeat: no-repeat;
    }

.color input {
    background-color: #f1f1f1;
}

.files:before {
    position: absolute;
    bottom: 10px;
    left: 0;
    pointer-events: none;
    width: 100%;
    right: 0;
    height: 57px;
    content: " or drag it here. ";
    display: block;
    margin: 0 auto;
    color: #2ea591;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}
*/

/* collaps-expand button styles*/

.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 80px;
    border: none;
    text-align: right;
    outline: none;
    font-size: 15px;
}

    .active, .collapsible:hover {
        background-color: #555;
    }

.content {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}