@charset "UTF-8";

/* @font-face {
    font-family: 'Oswald';
    src: url('Oswald-Regular.woff2') format('woff2'),
        url('Oswald-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('Oswald-Bold.woff2') format('woff2'),
        url('Oswald-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
} */


/*   **********    SETUP OF DOCUMENT     **********     */

html,
body * {
    box-sizing: border-box;
}

html {
    font-size: 8px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    /* background-color: #EEE; */
    background-color: #727272;

}

/*   **********    MAIN ELEMENTS     **********     */

main {
    width: 120.0rem;
    height: 67.5rem;
    margin: 0 auto;
    background-color: #DDD;
    color: #BBB;
}

/*   **********    Container ELEMENTS     **********     */

.left_side {
    width: 42.0rem;
    height: 62.5rem;
    /* background-color: #BBB; */
    color: #FFF;
    float: left;
}

.right_side {
    width: 78.0rem;
    height: 62.5rem;
    background-color: #AAA;
    color: #FFF;
    float: left;
}

.bottom {
    width: 120.0rem;
    height: 5.0rem;
    background-color: pink;
    color: #000;
    font-size: 2.0rem;
    /* padding: 1.0rem 0; */
    overflow: hidden;
}

.red {
    color: blue;
}

/*   **********    LOGO     **********     */
/* new */
.date_time {
    font-size: 2.2rem;
    background-image: url(../images/timebar.svg);
    background-size: cover;
    padding: 1rem;
    margin-top: 0.35rem;
    padding-left: 2.4rem;
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    color: #231f20;
}

/* new */
span {
    /* margin-right: 18%; */
    color: white;
}

.date_time p {
    padding-right: 1.8rem;
    text-align: right;
    margin-top: -18px;
}

/*   **********    WEATHER     **********     */

.weather {
    width: 20%;
    float: left;
    /* background-color: #6e1d44; */
    text-align: center;
    font-size: 2.0rem;
    color: #fff;
    padding: 1rem;
}

.weatherlight {
    background-color: #7a2c55;

}

.weather_icon>img {
    width: 103%;
}

.weather_high {
    font-size: 1.6rem;
    margin-bottom: 0.18rem;
}

.high {
    color: #000;
}

.low {
    color: #909090;
}

.sunny {
    background-image: url(../images/weather/sunny.png);
}

.rain {
    background-image: url(../images/weather/rain.png);
}

/*   **********    TICKER TAPE     **********     */

.line_across {
    width: 100%;
    height: 0.5rem;
    background-color:#007853;
}

/* @keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
} */



/* .ticker-wrap {
    width: 100%;
    padding-left: 100%;
    background-color: #eee;
} */

/* .ticker-move {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 60s;
    padding-top: 0.70rem;
} */


/* .ticker-item {
    display: inline-block;
    padding: 0 2rem;
} */

@-webkit-keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  @keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  .ticker-wrap {
    /* position: fixed; */
    bottom: 0;
    width: 100%;
    overflow: hidden;
    height: 5.0rem;
    background-color: white;
    padding-left: 100%;
    box-sizing: content-box;
  }
  .ticker-wrap .ticker {
    display: inline-block;
    height: 5.0rem;
    line-height: 4.1rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
}

.ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0;
    font-size: 2rem;
    color: #383838;
}

.bottom-left {
    float: left;
    width: 17%;
    height: 100%;
    z-index: 1000;
    position: relative;
    background-color: white;
    /* background-image: url(./images/tickerbar.svg);
    background-size: cover;
    background-position: center; */
}

.dayweek {
    position: absolute;
    bottom: 13.5px;
    left: 9px;
    color: #6f1d46;
    background-color: none;
    font-weight: 500;
    float: none;
    font-size: 2rem;
}

.ttspan {
    color: #007853;
}

.ticker__item {
    display: flex;
    flex-direction: row;
    margin-top: 1px;
}

.bottom-left img {
    width: 100%;
}

.bottom-right {
    float: right;
    width: 83%;
}

.red1 {
    color: red;
}

.red2 {
    font-weight: bold;
    color: royalblue;
}

/*   **********    Content ELEMENTS     **********     */

/* new */
.left_side_top {
    width: 42.0rem;
    height: 13.75rem;
    /* background-color: #727272; */
    color: #FFF;
    /* padding: 2.0rem; */
    font-size: 2.0rem;
    background-color: #FFF;
}

/* new */
.dclogo {
    padding: 3rem;
    padding-top: 2.1rem;
    padding-bottom: 1.5rem;
}

.left_side_middle {
    width: 42.0rem;
    height: 12.5rem;
    /* background-color: #909090; */
    background-image: url(../images/bgweather.jpg);
    background-position:center;
    background-size: contain;
    color: #FFF;
}

.left_side_bottom {
    width: 42.0rem;
    height: 37.5rem;
    background-color: #727272;
    color: #FFF;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.left_side_bottom>iframe {
    width: 42.0rem;
    height: 37.5rem;
    overflow: hidden;

    padding: 0;
    margin: 0;
}



.right_side_top {
    width: 78.0rem;
    height: 43.875rem;
    background-color: #ABABAB;
    color: #FFF;
}

.right_side_top>iframe {
    width: 78.0rem;
    height: 43.875rem;
}

.right_side_bottom {
    width: 78.0rem;
    height: 18.625rem;
    background-color: white;
    color: #383838;
    /* padding: 3.0rem; */
    font-size: 3.0rem;
}

.slide {
    background-color: blue;
    padding: 1.0rem;
}

.rsb-left {
    float: left;
    width: 24.5%;
}

.rsb-left img {
    width: 100%;
}

.rsb-right {
    padding: 2.4rem;
    float: right;
    width: 75%;
}

.slick-dots {
    bottom: -8px;
}

.slick-slide.slick-current.slick-active {
    height: 59px;
}

.slick-dots li button::before {
    color:black;
    opacity: 0.3;
}

.slick-track {
    line-height: 28px;
}

.slick-dots li.slick-active button::before {
    color: #007853;
    font-size: 10px;
    /* width: 30px;
    height: 30px;
    line-height: 30px; */
}

.newstop {
    padding-left: 175px;
    padding-top: 10px;
}

.dcheadline {
    color: #007853;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: -8px;
}

.dcline {
    text-align: right;
    margin-bottom: -13px;
}

/*   **********    CLEAR CODE FOR FLOATS     **********     */

.clear__float {
    float: none;
    clear: both;
}