@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-color: #EEE;
}

/*   **********    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: white;
    color: #FFF;
    float: left;
}

.left_side_top {
    background-color: white;
    box-shadow: inset 0px 0px 3px 4px#90D5AC;
 
 }

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

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

.red {
    color: blue;
}




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

.date_time {
    font-size: 3.0rem;
}

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

.weather {
    width: 20%;
    float: left;
    background-color: #0b8261;
    text-align: center;
    font-size: 2.0rem;
    color: white;
}

.weather_icon>img {
    width: 60%;
    margin-top: 5%;
}

.weather_day {
    padding-top: 8px;
   
}

.weather_high {
    padding-top: 5px;
   
}

.weather_wrapper {
    background-color: #0b8261;
}



.high {
    color: #000;
}

.low {
    color: #909090;
}

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

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

.mainly_cloudy {
    background-image: url(../images/weather/mainly_cloudy.png);
    background: no-repeat;
}

.ThunderStorm {
    background-image: url(../images/weather/ThunderStorm.png);
    background: no-repeat;
}

.snow {
    background-image: url(../images/weather/snow.png);
    background: no-repeat;
}



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

@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%;
}

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

.red1 {
    color: red;
}

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

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

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

.date_time {
    color: #0b8261;
    font-size: 18px;
    padding-top: 15px;
}

.left_side_middle {
    width: 42.0rem;
    height: 12.5rem;
    background-color: #0b8261;
    color: #FFF;
}

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

.left_side_bottom>iframe {
    width: 42.0rem;
    height: 36.25rem;
    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: 19.450rem;
    background-color: white;
    color: #3e2b2f;
    padding: 3.0rem;
    font-size: 3.0rem;
}

.tBox {
    width: 78.0rem;
    height: 20px;
    background-color: #0b8261;
    margin-top: -25px;
    margin-left: -24px;
}

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

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

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

.rsb-right {
    float: right;
    width: 80%;
    margin-top: 20px;
}


/* 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: relative;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    height: 5.0rem;
    background-color: #0b8261;
    padding-left: 100%;
    box-sizing: content-box;
  }
  .ticker-wrap .ticker {
    display: relative;
    height: 5.0rem;
    line-height: 4.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;
  }

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

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

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