@charset "UTF-8";

:root {
    --blue: #24b2d8;
    --green: #4A7465;
    --white: #ffffff;
    --black: #161616;
    --dark-grey: #262626;
    --light-grey: #cccccc;
}


/* PROMINENT NEW FEED STYLING  */

#prominent_news_ticker_wrap {
    background:var(--black);
    height:50px;
    width: 100%;
    transition: 0.2s cubic-bezier(0.755, 0.050, 0.855, 0.060);
}

#prominent_news_ticker {
    max-width: 100%;
    width:100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    height:100%;
}

/*#prominent_news_ticker .cycle-slide { width:auto !important;}*/

#prominent_news_ticker_content {
    color: var(--white);
}

#prominent_news_ticker_content a {
    color: var(--white);
    text-decoration: none;
    display: block;
    cursor: pointer;
	width: 100%;
}

@media (max-width: 991px) {
    #prominent_news_ticker_content a {
        font-size:0.875rem;
        line-height: 1.3;
    }
}
 

#prominent_news_ticker_content a:hover {
    text-decoration: none;
}

#prominent_news_ticker_content a span {
    text-decoration: underline;
}

#prominent_news_ticker_content a:hover span {
    text-decoration: none;
}

#prominent_news_ticker_content a div {
    display:inline-block;
    width: calc(100% - 30px);
}

#prominent_news_ticker_close_wrapper {
    display: block;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

#prominent_news_ticker_close,
#prominent_news_ticker_close:after,
#prominent_news_ticker_close:before {
    width: 14px;
    height: 1.5px;
}

#prominent_news_ticker_close {
    position: relative;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    background: var(--white);
    -webkit-transition: all 0s .2s;
    transition: all 0s .2s;
}

#prominent_news_ticker_close.animate {
    background: rgba(255, 255, 255, 0);
}

#prominent_news_ticker_close:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: var(--white);
    -webkit-transition: bottom .2s .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: bottom .2s .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: bottom .2s .2s cubic-bezier(.23, 1, .32, 1), transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: bottom .2s .2s cubic-bezier(.23, 1, .32, 1), transform .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
}

#prominent_news_ticker_close:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: var(--white);
    -webkit-transition: top .2s .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: top .2s .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: top .2s .2s cubic-bezier(.23, 1, .32, 1), transform .2s cubic-bezier(.23, 1, .32, 1);
    transition: top .2s .2s cubic-bezier(.23, 1, .32, 1), transform .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s cubic-bezier(.23, 1, .32, 1);
}

#prominent_news_ticker_close.animate:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s .2s cubic-bezier(.23, 1, .32, 1);
    transition: top .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s .2s cubic-bezier(.23, 1, .32, 1);
    transition: top .2s cubic-bezier(.23, 1, .32, 1), transform .2s .2s cubic-bezier(.23, 1, .32, 1);
    transition: top .2s cubic-bezier(.23, 1, .32, 1), transform .2s .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s .2s cubic-bezier(.23, 1, .32, 1);
}

#prominent_news_ticker_close.animate:before {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s .2s cubic-bezier(.23, 1, .32, 1);
    transition: bottom .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s .2s cubic-bezier(.23, 1, .32, 1);
    transition: bottom .2s cubic-bezier(.23, 1, .32, 1), transform .2s .2s cubic-bezier(.23, 1, .32, 1);
    transition: bottom .2s cubic-bezier(.23, 1, .32, 1), transform .2s .2s cubic-bezier(.23, 1, .32, 1), -webkit-transform .2s .2s cubic-bezier(.23, 1, .32, 1);
}


/*** animation slide-top*/

#prominent_news_ticker_wrap.slide-top {
    -webkit-animation: slide-top 0.2s cubic-bezier(0.755, 0.050, 0.855, 0.060) alternate forwards;
    animation: slide-top 0.2s cubic-bezier(0.755, 0.050, 0.855, 0.060) alternate forwards;
}

@-webkit-keyframes slide-top {
    0% {
        margin-top: 0;
    }
    100% {
        margin-top: -40px;
    }
}

@keyframes slide-top {
    0% {
        margin-top: 0;
    }
    100% {
        margin-top: -40px;
    }
}

/* Contact Note Fix */

.hours_notes {
    display: block;
    float: left;
}