/* entire container, keeps perspective */
.flip-container {
    /* -webkit-perspective: 1000px;
    perspective: 1000px; */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    margin: 0 auto 12px auto;
}

/*  UPDATED! flip the pane when hovered */
.flip-container:hover .back,
.flip-container.hover .back {
    -webkit-transform: rotateY(0deg) translateZ(0);
    transform: rotateY(0deg) translateZ(0);
}

.flip-container:hover .front,
.flip-container.hover .front {
    -webkit-transform: rotateY(180deg) translateZ(0);
    transform: rotateY(180deg) translateZ(0);
}

.flip-container,
.front,
.back {
    width: 164px;
    height: 136px;
}

/* flip speed goes here */
.flipper {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
}

/* hide back of pane during swap */
.front,
.back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    top: 0;
    left: 0;
}

.back-top,
.back-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.back-top {
    height: calc(100% - 31%);
    line-height: 125%;
}

.back-bottom {
    height: 31%;
    text-transform: uppercase;
    background: #383737 !important;
}

.back-bottom a {
    display: block;
    text-decoration: none;
    position: relative;
    margin-left: 15px;
}

.back-bottom a:hover {
    text-decoration: underline;
}

.back-bottom a:after {
    content: "\f125";
    position: absolute;
    top: -2px;
    left: -25px;
    width: 15px;
    height: 15px;
    font-size: 12px;
    line-height: 15px;
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 2px solid #fff;
    border-radius: 100%;
}

/*  UPDATED! front pane, placed above back */
.front {
    z-index: 2;
    -webkit-transform: rotateY(0deg) translateZ(0);
    transform: rotateY(0deg) translateZ(0);
}

/* back, initially hidden pane */
.back {
    -webkit-transform: rotateY(-180deg) translateZ(0);
    transform: rotateY(-180deg) translateZ(0);
}

.ezrss-horizontal .ezrss-item:before {
    display: none;
}

.ezrss-horizontal .ezrss-datemonth {
    text-align: right;
    font-size: 18px;
}

.ezrss-horizontal .ezrss-day,
.ezrss-horizontal .ezrss-month {
    padding-right: 0px;
}

.ezrss-horizontal .ezrss-solodate {
    font-family: "montserratbold", Segoe UI, sans-serif;
    font-size: 50px;
}

.ezrss-horizontal .ezrss-day,
.ezrss-horizontal .ezrss-month {
    font-family: "montserratbold", Segoe UI, sans-serif;
    text-transform: uppercase;
    margin-right: 10px;
}

.ezrss-horizontal .ezrss-day {
    color: #CA0000;
}

.ezrss-horizontal .ezrss-month {
    color: #000;
}

.ezrss-horizontal .ezrss-event {
    font-size: 16px;
    color: #4c4c4c;
}

.ezrss-horizontal .ezrss-time {
    font-size: 18px;
}

.ezrss-horizontal .ezrss-title a {
    font-family: "montserratmedium", Segoe UI, sans-serif;
    text-decoration: none;
    color: #4c4c4c;
    font-size: 17px;
    line-height: 130%;
}

.ezrss-horizontal .ezrss-title a:hover {
    text-decoration: underline;
}

#buttons .imagesizeit {
    overflow: visible;
}

#buttons .widgetitem img {}

#buttons .widgetitem img:hover {}

.ezMobileToggle {
    display: block;
    padding: 15px 0;
    color: #2069b5;
    font-family: "pt_sansregular";
    line-height: 100%;
    font-size: 22px;
    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;
}

/*---------------------------------Font Awesome Styles-----------------------------------*/
/*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;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

/*-----------Icon Shapes----------*/
/*READ ME: Font Size and Width/Height should be the same size to keep the icon centered*/
/*But you can increase or decrease the padding to get a larger radius/background */
/*Makes the icons a circle*/
.circle {
    font-size: 30px !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 7px;
}

/*Makes the icon a square*/
.square {
    font-size: 25px !important;
    width: 25px;
    height: 25px;
    text-align: center;
    padding: 6px;
}

/*Gives the icon a 3d bezel*/
.bezel {
    border: 2.5px solid;
    border-style: outset;
}

/*Gives the icon rounded edges*/
.rounded {
    font-size: 30px !important;
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    padding: 7px;
}

/*Gives the icon a drop shadow look*/
.shadow {
    text-shadow: 0px 3px 0px #b2a98f, 3px 7px 2px rgba(0, 0, 0, 0.5), 4px 10px 4px rgba(0, 0, 0, .25);
    font-size: 25px;
    padding: 11px;
    width: 25px;
    height: 25px;
}

/*------------Icon Font Colors and Background ------*/
/*Sets all of the icons to one color*/
.uniform {
    color: #000 !important;
    background-color: transparent !important;
}

/*Removes icon background for transparent look*/
.transparent {
    background: transparent !important;
    color: black !important;
}

.fa-facebook {
    background: #3b5998;
    border-color: rgba(59, 89, 152, .3);
    color: white;
}

.fa-facebook:hover {
    background: #546fa9;
}

.fa-at {
    background: #cc9900;
    color: #fff;
    border-color: rgba(204, 153, 0, 0.3);
}

.fa-twitter {
    background: #00aced;
    border-color: rgba(0, 172, 237.3);
    color: white;
}

.fa-twitter:hover {
    background: #6ccff5;
}

.fa-pinterest-p {
    background: #C92228;
    border-color: rgba(201, 34, 40, .3);
    color: white;
    text-shadow: rgba(201, 34, 40, .3);
}

.fa-pinterest-p:hover {
    background: #ef4d53;
}

.fa-linkedin {
    background: #4875B4;
    border-color: rgba(72, 117, 180, .3);
    color: white;
}

.fa-linkedin:hover {
    background: #6d93c9;
}

.fa-youtube {
    background: #FF3333;
    border-color: rgba(255, 51, 51, .3);
    color: white;
}

.fa-youtube:hover {
    background: #ff5656;
}

.fa-rss {
    background: #FF6600;
    border-color: rgba(255, 51, 51, .3);
    color: white;
}

.fa-rss:hover {
    background: #ff822f;
}

.fa-tumblr {
    background: #2B4964;
    border-color: rgba(43, 73, 100, .3);
    color: white;
}

.fa-tumblr:hover {
    background: #445f77;
}

.fa-vine {
    background: #00bf8f;
    border-color: rgba(0, 191, 143, .3);
    color: white;
}

.fa-vine:hover {
    background: #02f6b9;
}

.fa-envelope {
    background: #aaaaaa;
    border-color: rgba(46, 204, 113, .3);
    color: white;
    text-decoration: none;
}

.fa-envelope:hover {
    background: #ccc;
}

.fa-reddit-alien {
    background: #9E9E9E;
    color: white;
}

.fa-reddit-alien:hover {
    background: #b4b4b4;
}

.fa-instagram {
    background: #006600;
    color: white;
}

.fa-instagram:hover {
    background: #03b003;
}

.fa-google-plus {
    background-color: #F90101;
    color: white;
}

.fa-google-plus:hover {
    background: #ff4242;
}

/*-------------------------------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;
    }
}
/*------------------accordian-toggle-length---------------------*/
.accordion-item-input:checked~ .accordion-item-bd {
    max-height: 10000px;
}