/* Global Rules */
.pointer { cursor:pointer; }
.pointer:hover { color: #3847FA; }
.button_box {
    margin-bottom: 12px;
}
.error_txt{
    color:red;
}
.colorpickerheader{
    font-size:10pt;
    color:white;
}
#colorpickertitle{
    padding-left:5px;
    font-size:10pt;
}
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.toggle-label {
    margin-right: 10px;
    font-size: 16px;
    font-weight: 500;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--toggle-color, #ccc);
    transition: 0.4s;
    border-radius: 25px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--toggle-color);
}
input:checked + .slider:before {
    transform: translateX(25px);
}
.custom-image-marker {
    width: 35px;
    height: 35px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
    border: none !important; 
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
}
.pulse-marker {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 0, 0, 0.7);
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    pointer-events: auto;
    z-index: 10;
    cursor: pointer;
}
.pulse-marker::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    background: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
    pointer-events: none;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.map_label {
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
}
.custom-marker {
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10;
	border: 1.5px solid white;
	border-radius: 50%;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	box-shadow: 0 0 2px rgba(0,0,0,0.25);
}
.maplibregl-popup {
    max-width: 400px;
    pointer-events: auto;  
    z-index: 10;
}
.maplibregl-popup-content {
    font-size: 14px;
    line-height: 1.3;
}
.popup-shadow .maplibregl-popup-content {
    background-color: white;
    padding: 12px;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2); 
	transform: translateY(-4px);
	animation: elevateIn 0.3s ease-out forwards;
}
@keyframes elevateIn {
	from {
		transform: translateY(-10px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.individual-msg{
    font-size: 11px;
    color: darkgray;
    text-align: left;
}

legend{
    font-size: 10pt;padding:4px;
}
fieldset{
    border-radius: 5px;
    padding: 4px;
}
#colorpicker{
     width:365px;
     background-color: #222222;
     padding: 5px;
     border-radius: 5px;
     color:silver;
     margin:5px;
     position:absolute;
     z-index: 100;
     box-shadow: 4px 4px 5px rgba(0, 0, 0, .4);
 }
#btn_colorpicker{
    background-color:#7EC550FF;
    margin-top:5px;
}
#btn_colorpicker_reset{
    /*background-color:lightgray;*/
    margin-top:5px;
}
.ie-check{
    text-align: center;
    font-family: Roboto;
    margin: 20px auto auto;
    width: 400px;
    padding:15px;
    box-shadow: 0 2px 7px 1px rgba(0,0,0,0.3) !important;
    border-radius: 5px;
}
#app .gm-style .gm-style-iw-c {
    padding:0 !important;
    box-shadow: 0 2px 7px 1px rgba(0,0,0,0.5) !important;
}
#app .gm-style-iw-d[style] {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}
#app .gm-style .gm-style-iw-t::after {
    background: rgba(239, 239, 239, 1) !important;
}
.update-button-area{
    position:absolute;
    z-index: 1;
}
.v-select__selection--comma{
    overflow: visible !important;
}
.map_over{
    position:absolute;
    text-align: center;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.15);
    z-index:0;
}
#btn_update{
    display:inline-block;
    background-color: white;
    padding: 7px 20px 14px 20px;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    cursor:pointer;
    height: 40px;
}
#btn_update_refresh{
    font-size: 14px;
    position: relative;
    top: 2px;
}
#btn_update:hover{
    background-color: #F5F5F5;
}
#btn_text{
    display:inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    top: 2px;
}

.blue-box{
    width:100%;
    min-height:72px;
    /*box-shadow: 2px 2px 4px #767676;
    z-index: 3;*/
}

.listdivider{
    border-left:10px solid #F4F6F6;
}
.button_box-left { border-radius:4px 0 0 4px;text-align: center; padding-top:10px; padding-bottom:10px; font-size:16px;}
.button_box-right { border-radius:0 4px 4px 0;text-align: center; padding-top:10px; padding-bottom:10px; font-size:16px;}

.button_box_sm {
    text-align: center;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 14px;
    margin-bottom: 10px;
}
.button_box-left_sm {border-radius:4px 0 0 4px;text-align: center; padding-top:7px; padding-bottom:7px; font-size:14px; }
.button_box-right_sm { border-radius:0 4px 4px 0;text-align: center; padding-top:7px; padding-bottom:7px; font-size:14px; }
.readonly_back { background-color: #5E7692; color: white; }
.light_back-disabled { background-color: #f4f4f5; color:#000;  }

.disabled-label {
    color: grey;
}
.textbox-label {
    font-weight: 400;
    font-size: 12pt;
    color: black;
    text-align:left;margin-bottom: 5px;
}
.inactive {
    color: lightgrey;
}
.light_back {
    background-color:  rgba(72,129,255,0.1);
    cursor: pointer;
}
.dark_back {
    cursor: pointer; background-color: rgba(72,129,255,1); color: white;
}
.button_box-disabled {
    color: lightgrey;
    background-color: #F4F6F6;
}
.dv-selector{
    display:inline;
    width:100%;
}
.v-input__slot{
    min-height: 40px !important;
}
.v-text-field--single-line input {
    margin-top: 4px !important;
}
.leftside{
    float:left;overflow:auto;width:260px;background-color: white;
}
.display-text-lg{
    font-size: 30px;
}
.display-label-lg{
    font-size: 16px;
}
.display-text-sm{
    font-size: 21px;
}
.display-text-mini{
    font-size: 19px;
    text-align:center;
}
.display-label-sm{
    font-size: 11px;
}
.bolt{
    color:red;
    font-size:25px;
}
.display-text-mini .bolt{
    color:red;
    font-size:19px;
}
.tint{
    color:red;
    font-size:24px;
}
.house{
    color:lightgray;
    font-size:24px;
}
.person{
    color:lightgray;
    font-size:24px;
}
.last-updated{
    position:absolute;
    bottom:0;
    color:gray;
    font-style: italic;
    font-size: 16px;
}
.small-search-button{
    color: white;
    font-weight: 500;
    font-size:16px;
    height: 40px;
    width: 40px;
}
.small-search-button:focus {
    outline: none;
}
.search-input-group {
    width:100%;
    position:absolute;
    left:0;
    top: 0;
    z-index:2;
}
.dv-angle-down{
    color:#0173DE !important;
}
.search-input-group input {
    padding: 8px 8px 8px 40px;
    border-radius: 3px;
    background-color: white;
    width: 100%;
    color: black;
}
.search-input-group .dv-search,
.search-input-group .close-searchbox {
    position: absolute;
    top: 50%;
    transform: translate(-25%,-50%);
}
.search-input-group .dv-search {
    left: 12px;
}
.search-input-group .close-searchbox {
    right: 16px;
}
.close-searchbox{
    font-size:20px;
    color:black;
    float:right;
    cursor:pointer;
}
.recent-search-title{
    font-size: 14px;
    font-weight: 400;
    color:gray;
}
.tablet-searchbox{
    width: 60%;
}
.refresh-btn{
    width:32px !important;
    height: 32px !important;
    opacity:0.5;
}
.search-list{
    left:0;
    border-radius: 3px !important;
}
.search-list .v-list {
    padding: 0;
}
.search-list .v-list-item .v-list-item__title {
    display: flex;
    align-items: center;
}
#btn_report_outage{
    font-size:15px !important;;
    font-weight: normal !important;;
    padding:6px 14px !important;;
    float:right;
    height:40px !important;;
    text-transform: none !important;
    letter-spacing: normal !important;
}
table {
    table-layout: fixed;
}
.gm-ui-hover-effect{
    margin:4px !important;
}
.v-badge__badge{
    font-size: 8px !important;
    padding:3px !important;
    height: 16px !important;
    min-width: 16px !important;
    border-radius:9px !important;
    right:2px !important;
    top:11px !important;
}
body {
    background-color: white;
    height: 100%;
}
.v-input__append-inner {
    margin-top: 13px !important;
}
.pane-white {
    background-color: white;
}

.custom.v-text-field > .v-input__control > .v-input__slot:before {
    border-style: none;
}

.custom.v-text-field > .v-input__control > .v-input__slot:after {
    border-style: none;
}

.custom.v-text-field {
    padding-top: 0;
    margin-top: 0;
}

.custom > .v-input__control {
    height: 40px;
}

.selector-text {
    font-weight: 500;
    max-width: 220px !important;
    font-size:15px !important;
}
.map_label{
    font-size: 13pt;
    text-align: center;
    text-shadow: -2px -2px 0 white,2px -2px 0 white,-2px 2px 0 white,2px 2px 0 white;
    color: black;
    line-height: 1em;
}
.list-selector-text {
    font-weight: 500;
    font-size: 18px;
}
.v-stepper__step__step .v-icon.v-icon {
    font-size: 1rem !important;
}

.text-primary {
    color: rgba(72, 129, 255, 1);
}
.light{
    color:white !important;
}
.text-white {
    color: white;
}

button {
    padding: 5px 5px;
    border-radius: 3px;
}

.sm-bar {
    height: 4px;
    width: 100%;
    background-color: #EFEFF4;
}

.sm-bar-marker {
    height: 100%;
    background-color: red;
}

.bar {
    height: 35px;
    width: 100%;
    background-color: #EFEFF4;
    border-radius: 3px;
}

.bar-marker {
    height: 100%;
    background-color: red;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.inactivelist {
    color: gray;
}

.dv-tab {
    font-size: 22px;
    font-weight: 400;
    color: gray;
    border-bottom: none;
    display: inline-block;
    height: 43px;
    margin-right: 30px;
    cursor:pointer;
}

.dv-tab-active {
    font-size: 22px;
    font-weight: 400;
    color: black;
    border-bottom: 2px solid rgba(72, 129, 255, 1);
    display: inline-block;
    height: 43px;
    margin-right: 30px;
    cursor:pointer;
}
.danger {
    background-color: rgba(240,240,240,.9);
    position:fixed;
    bottom:0;
    right:0;
    left: 0;
    text-align: left;
    z-index: 99;
}
.danger .fa-times {
    font-size:22px;
    color:gray;
    position: absolute;
    top: 16px;
    right: 16px;
}
.danger-report .danger-message {
    font-size:14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.sm-md-outage-view-filters {
    margin: 0 !important;
    display: inline-block;
    overflow: visible;
}
.sm-md-outage-view-filters .button_box_sm {
    margin-bottom: 0;
    display: inline-block;
    width: 50%;
    white-space: nowrap;
}
.v-application .stat-label.caption {
    line-height: 1.25;
    white-space: nowrap;
}
.v-application .stat-label-mini.caption {
    line-height: .8rem  !important;
    white-space: nowrap;
    text-align:center;
    font-size: .7rem !important;
}

.mini_btn {
    font-size: 13px !important;
    font-weight: normal !important;
    padding: 4px 10px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
/* Updates forced to .cfa-list generated markup until element can be updated directly */

#listing {
    padding: 16px !important /* same as applying .pa-4 to element;; */;
}
@media only screen and (min-width: 960px) {
    #listing {
        padding: 24px !important /* same as applying .pa-md-6 to element;; */;
    }
}
#listing table {
    width: 100% !important /* replace 'calc…' rule with 100% */
}
#listing .dv-tab, #listing .dv-tab-active {
    font-size: 20px !important /* set to .title font-size */
}
#listing td[colspan="3"] > div {
    margin-top: 16px;
}

@media only screen and (min-width: 425px) {
/*    .v-application .sm-md-outage-view-filters .button_box_sm {
        padding-right: 24px !important;
        padding-left: 24px !important;
    }*/

}
@media only screen and (max-width:400px){
    .v-list-item__title{
        font-size: 10pt !important;
    }
    .selector-text {
        font-weight: 500;
        max-width: 160px !important;
        font-size:10px !important;
    }
    .v-input__append-inner {
        margin-top: 10px !important;
    }
}
/* Narrow Screens Only */
@media only screen and (max-width: 599px) {
    .bolt{
        color:red;
        font-size:16px;
    }
    .tint{
        color:red;
        font-size:16px;
    }
    .house{
        color: lightgray;
        font-size:16px;
    }
    .person{
        color: lightgray;
        font-size:16px;
    }
    .search-list{
        left:0;
    }
    .selector-text {
        font-weight: 500;
        max-width: 180px !important;
        font-size:15px !important;
    }
    .danger .fa-exclamation-triangle {
        margin-bottom: .2em;
    }
    .danger .title {
        white-space: nowrap;
    }
    .update-button-area {
        top: 10px;
        left: -250px;
    }
    .update-button-area #btn_text {
        font-size: 14px;
        cursor: pointer;
    }
}

/* Narrow & Medium Screens Only */
@media only screen and (max-width: 959px) {
    .branding-logo {
        max-width: 170px;
    }
    .branding-logo img {
        width: 100%;
    }
    .selector-text {
        font-weight: 500;
        max-width: 200px !important;
        font-size:15px !important;
    }
    .map_over{
        position:absolute;
        font-size: 130px;
        text-align: center;
        top:0;
        height: 101%;
        width: 100%;
        background-color: rgba(0,0,0,0.15);
        z-index:0;
        left:-260px;
    }
}

/* Medium Screens Only */
@media only screen and (min-width: 600px) and (max-width: 959px) {
    .v-input__append-inner {
        margin-top: 10px !important;
    }
}

/* Medium & Wide Screens */
@media only screen and (min-width: 600px) {
    .update-button-area{
        top:10px;
        left: -46px;
    }
    .danger {
        text-align: center;
    }
}

/* Wide Screens Only */
@media only screen and (min-width: 960px) {
    .update-button-area{
        left: 214px;
    }
    .v-application .sm-md-outage-view-filters-wide .button_box {
        width: 50%;
        display: inline-block;
    }
    .danger-map {
        left: 260px;
    }
}

/* -----------------------------  Report an Outage CSS ----------------------------------*/

.back{
    font-size: 12pt;
    text-align: right;
}
#report_outage_app .report-header,
#report_outage_app .page_title,
#report_outage_app .report_page_content {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}
#report_outage_app .v-stepper__header,
#report_outage_app .v-stepper__items {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 16px;
}
#report_outage_app .v-stepper__wrapper {
    /*max-width: 800px;*/
}
#report_outage_app .logo {
    max-width: 155px;
    max-height:70px;"
}
.look_up2_acct::before {
    content: " - ";
    margin: 10px;
    padding-right:5px;
}
.theme--light.v-application {
    background: white !important;
}
.v-stepper, .v-stepper__header {
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.0), 0 2px 2px 0 rgba(0,0,0,.0), 0 1px 5px 0 rgba(0,0,0,.0) !important;
}
.v-stepper__header {
    background-color: rgba(0,0,0,.04);
    margin-left: 5px;
    margin-right: 5px;
}
.v-stepper__items{
    margin-top:8px !important;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    border:1px solid lightgrey !important;
    border-top: 6px solid lightgrey !important;
    border-radius:3px;
    padding:5px;
}
.rlogo{
    height:auto;
    max-width: 210px;
}
.v-text-field--outlined>.v-input__control>.v-input__slot {
    background: white !important;
}
.dv-btn{
    height: 47px !important;
    padding:0 30px 0 !important;
}
.light{
    color: white !important;
}
input{
    background-color: white;
}
legend{
    display: table-cell !important;
}
.gm-style-iw .gm-style-iw-c {
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    /*min-height: 150px;*/
}
/*#look_up_value .v-text-field__slot{
    height:48px !important;
}*/

#report_outage_app .v-card {
    box-shadow: 0 0 !important;
}
.outage{
    color:#ff4141;
}
.no_outage{
    color:#4881ff;
}
.lighten{
    opacity:0.5;
}
.card{
    padding:40px;
}
.card_label{
    font-size:14pt;
    font-weight: bold;
    padding-left: 5px;
    padding-bottom:20px;
    text-align:left;
}
.label_padding{
    padding:0;
    text-align:left;
    width:100%;
    margin-bottom:5px;
}
.page_title{
    font-size: 24px;
}
.report_info {
    background-color: white;
    border: 1px solid #FAFAFA;
    border-radius: 5px;
    width: 100%;
    height: 80%;
    max-height: 400px;
    max-width: 800px;
    margin-bottom: 20px;
}
.client_info tr td{
    height:20px;
}
.submit_outage tr td{
    padding-bottom:15px;
}
[class^="dv-"]:before, [class*=" dv-"]:before {
    width:inherit !important;
}

@media (max-width:600px){
    .back{
        font-size: 9pt;
        text-align: right;
    }
    .rlogo{
        max-width: 170px;
        max-height:120px;
    }
    .card{
        padding:10px;
    }
    .card_label{
        font-size:12pt;
        font-weight: bold;
        padding-bottom:10px;
        text-align:left;
    }
    .report_page_content{
        width:100%;
        margin-left:auto;
        margin-right:auto;
        text-align:center;
        margin-top:0;
    }
    .client_info tr td{
        height:10px;
    }
    .submit_outage{
        font-size:12pt;
    }
    #verify.v-stepper__content{
        padding: 0 0 16px 0 !important;
    }
}
/* Narrow & Medium Screens Only */
@media only screen and (max-width: 959px) {
    .page_title{
        padding-left:10px;
    }
}
/* Wide Screens Only */
@media only screen and (min-width: 960px) {
    #report_outage_app .report-header,
    #report_outage_app .page_title,
    #report_outage_app .report_page_content {
        padding-left: 24px;
        padding-right: 24px;
    }
}
#alert .v-alert__wrapper {
    display: inline-block !important;
}
#alert .v-alert__icon {
    margin-right: 0 !important;
}
.vertical{
    margin: auto !important;
    text-align:center;
}
.vertical .v-alert__wrapper {
    display: inline-block !important;
}
.vertical .v-alert__icon {
    margin: 18px !important;
}