#faux-modal {
    position: absolute;
    z-index: 20000;
    top: -250px;
    bottom: 0;
    left: 0;
    right: 0;
}

.dropdown-container {
    position: relative;
    display: inline-block;
    background: #0c5697;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    padding: 2px 5px 2px 7px;
 }

.dropdown-container a {
	text-decoration: none !important;
    color: #ffffff;
}
.dropdown-container:after {
	content: "\f107";
    font-family: awb-icons;    
    color: #ffffff;
    margin-left: 5px;
    float: right;
}

.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    max-width: 220px;
    background-color: #ffffff;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 15%) !important;;
    z-index: 1;
}

 .dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #021333;
    font-size: 14px;
    border-bottom: 1px solid rgba(226,226,226,0.2);
}

.dropdown-content a:hover {
    background-color: #e2e2e2;
    text-decoration: none !important;
    color: #0c5697;
}

.dropdown-container:hover .dropdown-content {
    display: block;
}  

#electricDiv,
#electricTagline {
    display: none;
}

@media only screen and (max-width: 1276px) {
    .dropdown-container { 
        width: auto !important;
        max-width: fit-content;
	}
	.dropdown-content a {
		font-size: 12px !important;
	}
	.dropdown-content {
		width: 180px;
	}
}