/* Reset ------------------------------------------------------------------------------------------------------------ */
#tnt-container,
#tnt-container *,
#tnt-open-close{

    /* this is useful to prevent div highlighting */
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    -khtml-user-select: none; /* webkit browsers */
    -o-user-select: none;/* not yet implemented */
    user-select: none;/* not yet implemented */
    -webkit-touch-callout: none;

    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;

    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    text-shadow: none !important;

    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;

    letter-spacing: normal !important;

    cursor: default !important;

}

/* General ---------------------------------------------------------------------------------------------------------- */
#tnt-container a{
    -webkit-transition: .3s all ease-in-out !important;
    -moz-transition: .3s all ease-in-out !important;
    transition: .3s all ease-in-out !important;
    cursor: pointer !important;
}

/* Container -------------------------------------------------------------------------------------------------------- */
#tnt-container{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999999998;
    visibility: hidden;
}

/* Featured News ---------------------------------------------------------------------------------------------------- */
#tnt-featured-news-container{
    min-height: 100px;
    padding: 0 80px !important;
}

#tnt-featured-title > *{
    min-height: 50px;
    line-height: 50px;
    display: inline !important;
}

#tnt-featured-title > div{

}

#tnt-featured-title > a,
#tnt-featured-title > a:hover{
    text-decoration: none !important;
}

#tnt-featured-excerpt > div{
    line-height: 50px;
    min-height: 50px;
}

#tnt-featured-title > *,
#tnt-featured-excerpt > div{
    text-shadow: 2.5px 4.33px 5px rgba( 0, 0, 0, 0.30 ) !important;
}

/* Sliding News ----------------------------------------------------------------------------------------------------- */

#tnt-sliding-news-container{
    height: 40px;
    background: #000;
    position: relative;
}

#tnt-moving-news{
    position: absolute;
    top: 0;
}

#tnt-moving-news.tnt-visibility-hidden{
    visibility: hidden;
}

.tnt-single-sliding-news{
    display: inline-block;
    height: 40px;
}

.tnt-single-sliding-news div,
.tnt-single-sliding-news a{
    display: block;
    height: 40px;
    max-height: 40px;
    line-height: 40px;
}

.tnt-single-sliding-news a,
.tnt-single-sliding-news a:hover{
    text-decoration: none !important;
}

/* Clock ------------------------------------------------------------------------------------------------------------ */

#tnt-clock{
    display: none;
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    z-index: 999999999999;
    background-size: 80px 40px !important;
}

/* Open/Close Button ------------------------------------------------------------------------------------------------ */
#tnt-open-close{
    display: none;
    cursor: pointer !important;
    position: fixed;
    bottom: 0;
    width: 80px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 999999999999;
    background-size: 80px 40px !important;
    visibility: hidden;
}

/* Edge 12 + Fix (without this fix the sliding news speed slow down when transitions are animated) ------------------ */
@supports (-ms-ime-align:auto) {
    #tnt-container a{
        transition: none !important;
    }
}
/* Internet Explorer 10 & 11 Fix (without this fix the sliding news speed slow down when transitions are animated) -- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #tnt-container a{
        transition: none !important;
    }
}