/*Fixes tab overflow issue*/
.RadTabStrip .rtsLevel,
.RadTabStripVertical .rtsLevel {
    overflow: visible !important;
}

/*ezRSS Feed*/
html .ezrss-original .ezrss-header {
    padding: 0px;
}

.ezrss-original .ezrss-header * {
    font-family: 'open_sansregular', sans-serif;
    font-weight: normal !important;
    color: #bf0000;
    text-transform: capitalize !important;
    font-size: 18px !important
}

html .ezrss-original .ezrss-event a {
    color: #333;
}

html .ezrss-original .ezrss-event-container {
    margin: 0px;
}

html .ezrss-original .ezrss-event-container:hover {
    background: transparent;
}

html .ezrss-original .ezrss-event-container a {
    display: inline-block;
}

html .ezrss-original .ezrss-event-container:hover a {
    text-decoration: underline !important;
}

html .ezrss-original .ezrss-event {
    font-family: 'open_sanslight', sans-serif;
    padding-left: 0px;
}

html .ezrss-original .ezrss-event:before {
    display: none;
}

/*Circle Border Animation*/
.spin {
    width: 110px;
    height: 110px;
    padding: 0;
    position: relative;
    margin: 0 auto;
}

.spin:hover {
    color: #bf0000;
}

.spin:before,
.spin:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.spin:before,
.spin:after {
    top: 0;
    left: 0;
}

.spin:before {
    border: 6px solid transparent;
}

.spin:hover:before {
    border-top-color: #bf0000;
    border-right-color: #bf0000;
    border-bottom-color: #bf0000;
    -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
    transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.spin:after {
    border: 0 solid transparent;
}

.spin:hover:after {
    border-top: 6px solid #bf0000;
    border-left-width: 6px;
    border-right-width: 6px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
    transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
}

.spin>a>img {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.spin>a {
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    display: block;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.circle {
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.circle:before,
.circle:after {
    border-radius: 100%;
}

/*------------------------------------------------------------------------Emergency System--------------------------------------------------------------------------*/
#emergency-alert {
    position: relative;
    z-index: 9999;
    width: 100%;
    -webkit-transition: all 1.5s ease;
    transition: all 1.5s ease;
    opacity: 0;
    overflow: hidden;
}

#emergencywrapper {
    background: #FFD800;
    -webkit-transition: all 1.5s ease;
    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;
}

@media screen and (max-width:700px) {
    #emergencywrapper .eztext_area {
        padding: 10px 20px;
    }

    #emergencyin .ion-ios-close-empty {
        right: 10px;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*----------------------Mobile Wrap Toggle ----------------------*/
.mobilewrappercontainer {
    width: 100%;
}

.ezMobileToggle {
    display: block;
    color: #bf0000;
    font-family: "open_sanslight";
    line-height: 100%;
    font-size: 25px;
    width: 94%;
    margin: 0 3%;
}

.ezMobileToggle:after {
    content: "\f104";
    font-size: 14px;
    font-family: "Ionicons";
    color: inherit;
    float: right;
}

.mobilewrapper {
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.mobilewrapper.collapsed {
    max-height: 0px !important;
}

.mobilewrapper.expanded {
    height: auto;
    opacity: 1;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    border-top: 1px solid #ccc;
}

/*----------------------Styles for Font Awesome Icons----------------------*/
/*Affects all icons*/
.fa {
    line-height: inherit;
    /*Use to override all icon colors for uniform look*/
    color: ;
    background: ;
    overflow: hidden;
    background-blend-mode: multiply;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#home-calendar-feed {
    height: 360px;
}

.ezc-horizontal-item {
    display: block;
    float: left;
}

.ezc-vertical-item {
    display: block;
    width: 100%;
}

.homepage-news-carousel .ezrssfeed .ezitem {
    margin: 0px;
    padding: 2px !important;
}

.notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
/*------------------accordian-toggle-length---------------------*/
.accordion-item-input:checked~ .accordion-item-bd {
    max-height: 10000px;
}