@charset: utf-8;

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

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

html {
    font-size: 8px;
}

body {
    margin: 0;
    padding: 0;
    font-family: Roboto;
    background-image: url(../images/wall.jpg);
    background-size: cover;
}

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

main {
    width: 120.0rem;
    height: 67.5rem;
    margin: 0 auto;
    background-color: #DDD;
    color: #BBB;
    outline: 20px solid black;
    /* border-radius: 4px; */
    margin-top: 90px;
}

/*   **********    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: rgb(255, 255, 255);
    color: #000;
    font-size: 2.0rem;
    padding: 0;
    overflow: hidden;
}

.red {
    color: blue;
}

/*   **********    LOGO     **********     */

.date_time {
    width: 42.0rem;
    height: 3.0rem;
    color: #007853;
    text-align: center;
/*    margin-top: 3.0rem;*/
    padding-right: 70px;
    font-size: 15px;
    flex: 50%;
    background: #ffffff;
    margin-left: 10px;
}
/*   **********    WEATHER     **********     */

.weather {
    width: 20%;
    float: left;
    background-color: aliceblue;
    text-align: center;
    font-size: 1.5rem;
    color: darkblue;
}

.weather_icon>img {
    width: 100%;
}

.weather_wrapper {
    display: flex;
}
#weather_day {
    text-align: center;
}


.weather_item {
    width: 20%;
    padding: 10px;
    text-align: center;
}

.weather_item img {
    width: 85%;
}

.highlow {
    color: rgb(255, 255, 255);
    font-size: 12px;
    text-align: center;
}
.slash {
    color: yellow;
}
.high {
    color: #000;
}

.low {
    color: #909090;
}

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

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

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

@-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: rgb(0, 0, 0);
    padding-left: 100%;
    box-sizing: content-box;
  }

  .ticker-wrap .ticker {
    display: inline-block;
    height: 5.0rem;
    line-height: 5.0rem;
    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: 30s;
    animation-duration: 30s;
  }

  .ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0 ;
    font-size: 2rem;
    color: white;
    letter-spacing: 0.0225em;
  }


/* @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;
} */

.bottom-left {
    float: left;
    width: 10%;
    z-index: 1000;
    position: relative;
    background-color: white;

}

.bottom-left img {
    width: 100%;
    padding-top: 10px;
}

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

.red1 {
    color: red;
}

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

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

.left_side_top {
    width: 42.0rem;
    height: 12.5rem;
    background-color: #FFF;
    color: #FFF;
    padding: 2.0rem;
    font-size: 2.0rem;
}

.left_side_middle {
    width: 42.0rem;
    height: 12.5rem;
    background-color: #007853;
    color: #FFF;
    font-size: 15px;
}

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

.left_side_bottom>iframe {
    width: 45.0rem;
    height: 40.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: #007853;
    color: #FFFFFF;
    padding: 3.0rem 4.0rem 3.0rem 0rem;
    font-size: 3.0rem;
}

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

.rsb-left {
    float: left;
    width: 15%;
    margin-top: -4px;
}

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

.rsb-right {
    float: right;
    width: 80%;
    font-size: 20px;
}

.red {
    font-size: 150%;
    color: red;
    font-weight: bold;
}

.slick-dots {
 bottom: 2;
}

.slick-dots li button::before {
    color: white;
    opacity: 0.5;
    font-size: 10px;
}

.slick-dots li.slick-active button::before {
    color: yellow;
    opacity: 1.0;
}

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

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