/* See also "outage.css" as the "master" css for this section */

/* When complete use any styles from the outage.css file for the
 * "outage_center_global.css" file 
*/
 
.topBannerMenuBGContainer {
    width: 100%;
    height: 69px;
    vertical-align: top;
    background-color: fff;
}

.topBannerMenuContainer {
    max-width: 1032px;
    margin: 25px auto 9px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.topBannerMenuContainer img {
    max-width: 100%;
}

.topBannerMenuBGColor {
    width: 100%;
    height: 60px;
    margin-bottom: 13px;
    background-color: #7b7b7b;
    position: relative;
    display: flex;
    justify-content: space-around;
}

.topBannerMenuItem {
    /* width: 293px; */
    width: 33%;
    height: 60px;
    text-align: center;
    margin-top: 11px;
    position: relative;
}

.topBannerMenuItem a:hover {
    opacity: 0.8;
}

.listContainer {
    margin-top: 25px;
    position: relative;
    display: flex;
}

.listContainerLeft {
    max-width: 10%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.listBox {
    width: 32px;
    height: 32px;
    margin: 6px 9px 0px 0px;
    background-color: #70a13b;

}

.listContainerRight {
    position: relative;
    font-size: 18px;
    font-weight: 800;
}

.listContainer li {
    margin: 0px 0px 3px 14px;
    font-size: 16px;
    font-weight: 500;
}

.red {
    background-color: #ee2e24;
}

.yellow {
    background-color: #ffcc00;
}

.mapLinkContainer {
    margin: 45px auto 0px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mapLink {
    padding: 9px 0px;
    text-align: center;
    position: absolute; width: 37%;
    background-color: #6b6b6b;
    opacity: 0.6;
    font-size: 24px;
    color: #fff;
}

.mapLinkContainer a:hover {
    opacity: 0.92;
}

.reportOutageLinkContainer {
    margin: 45px auto 0px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reportOutageLink {
    padding: 9px 22px;
    text-align: center;
    font-size: 28px;
    color: #fff;
    background-color: #ee2e24;
}

.reportOutageLinkContainer a:hover{
    opacity: 0.7;
}

.dial211Container {
    margin: 45px auto 0px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textAlertSignUpContainer {
    margin: 45px auto 0px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textAlertSignUpContainer a:hover {
    opacity: 0.9;
}

.textAlertFaqBannerContainer {
    margin: 45px auto 0px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.textAlertFaqBannerContainer:hover {
    opacity: 0.8;
}

.faqContainer {
    margin: 45px auto 0px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.faqDropdownContainer {
    width: 79%;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    flex-direction: column;
}

.faqQuestion {
    width: 100%;
    min-height: 69px;
    position: relative;
    display: flex; 
    justify-content: flex-start; 
    align-items: center;
    font-size: 18px;
    color: #089cd9;
    border-top: 1px solid #000;

}

.faqQuestion:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    width: 36px;
    text-align: center;
    transform: translateY(-50%);
    font-weight: bold;
    color: inherit;
}

/* .faqIndicator.contentOpen:after { */
.faqQuestion.contentOpen:after {
    content: "-";
}

.faqQuestion:hover {
    opacity: 0.7;
}

.faqAnswer {
    width: 100%;
    margin-top: -5px;
    margin-bottom: 19px;
    text-align: left;
    font-size: 18px;
    position: relative;
    display: none;
}

/* Responsive */
@media screen and (max-width: 995px) {
    .topBannerMenuBGColor {
        height: 45px;
    }

    .listContainerRight {
        font-size: 14px;
    }

    .listBox {
        width: 22px;
        height: 22px;
    }

    .listContainer li {
        font-size: 14px;
    }

    .largeHeading {
        font-size: 32px;
    }
    
    .mapLink {
        font-size: 18px;

    }

    .faqQuestion, .faqAnswer {
        font-size: 15px;
    }

}