/*Fixes tab overflow issue*/

.RadTabStrip .rtsLevel,
.RadTabStripVertical .rtsLevel {
    overflow: visible !important;
}


/*------------------------------------------------------------------------Emergency System--------------------------------------------------------------------------*/

#emergency-alert {
    position: relative;
    z-index: 9999;
    width: 100%;
    transition: all 1.5s ease;
    opacity: 0;
    overflow: hidden;
}

#emergencywrapper {
    background: #FFD800;
    transition: all 1.5s ease;
}

#emergencywrapper .editbox {
    margin-top: 50px;
}

#emergencywrapper .widgetitem {
    width: 94%;
    float: none;
}

#emergencywrapper .eztext_area {
    padding: 10px;
}

#emergencyin {
    position: relative;
}

#emergencyin .ion-android-alert {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 30px;
    color: white;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

#emergencyin .ion-ios-close-empty {
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 35px;
    z-index: #999;
}

#emergencyin .ion-ios-close-empty:hover {
    cursor: pointer;
}

.marquee {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px !important;
    overflow: hidden;
    background: #333;
    padding: 12px 0;
    font-size: 25px;
    font-family: "rokkittregular";
    color: #fff;
}
.marquee a {
	color:white !important;
	text-decoration:underline;
}
.marquee a:hover{
	color:white;
	text-decoration:none !important;
}
.accordion {
    padding: 0;
    background: #F9F9F9;
    border: 0px;
}

.accordion-item-hd {
    background: #333;
    color: #fff;
    padding: 15px 30px 15px 10px;
    font-family: "rokkittregular", georgia;
    font-size: 28px;
    text-align: center;
}

.accordion-item-input:checked~.accordion-item-bd {
    max-height: 10000px;
}

.accordion-item-input:checked~.accordion-item-bd .widgetitem {
    padding: 0 15px;
}
.accordion-item-bd {
    color: #474747;
    font-size: 16px !important;
}

.accordion-item-hd-cta{
    top: calc(55% - 8px);
    right: 10px;
}
@media screen and (max-width:700px) {
    #emergencywrapper .eztext_area {
        padding: 10px 20px;
    }
    #emergencyin .ion-ios-close-empty {
        right: 10px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
