@charset "utf-8";

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

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

html {
    font-size: 8px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-image: url("bg3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FFF;
}

/*   **********    MAIN ELEMENTS     **********     */
#screen {
    width: 128.0rem;
    height: 75.5rem;
    margin: 5.5rem auto;
    border: solid #2e2e2e 5px;
    background-color: #3b3b3b;
    border-radius: 5.0rem;
}

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

/*   **********    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: #FFF;
    color: #000;
    font-size: 2.0rem;
    padding: 0;
    overflow: hidden;
    display: flex;
}

.red {
    color: blue;
}

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

/* Original */
/* .dateTimeContainer {
    width: 100%;
    height: 4.0rem;
    padding: 0;
    text-align: center;
    background-color: #4c9676;
} */

.dateTimeContainer {
    width: 100%;
    height: 4.0rem;
    padding: 0;
    text-align: center;
    background-color:#FFF;
}

.DCLine {
    width: 100%;
    height: 0.5rem;
    padding: 0;
    text-align: center;
    background-color: #FFF;
    margin: 0.4rem 0 0 0;
}
.DCLine-left {
    width: 61%;
    height: 0.5rem;
    padding: 0;
    text-align: center;
    background-color: #3E2B2F;
    float: left;
}

.DCLine-right {
    width: 35%;
    height: 0.5rem;
    padding: 0;
    text-align: center;
    background-color: #248f71;
    float: right;
}



.date_time {
    width: 100%;
    height: 4.0rem;
    /* font size for testing */
    font-size: 2.2rem;
    /* Font size I like */
    /* font-size: 2.5rem; */
    background-color: #EEE;
    color: #3E2B2F;
    padding: 0.8rem;
    margin: 0;
    border-bottom: 0.5rem #dedede solid;
}

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

.weather {
    width: 20%;
    /* For testing only, CHANGE HEIGHT */
    /* height: 13.5rem; */
    height: 13.0rem;
    float: left;
    /* background-image: linear-gradient(rgb(183, 224, 199), rgb(199, 234, 213)); */
    background-image: linear-gradient(rgb(255, 255, 255), rgb(242, 242, 242));
    text-align: center;
    padding: 1.0rem;
    margin: 0.2rem 0 0 0;
    font-size: 2.0rem;
    color: #3d8566;
}

.weather_day {
    margin: 0.5rem 0 0 0;
}

.weather_icon>img {
    width: 90%;
    margin: 0.5rem 0rem;
}

/* background colours on the next 4 items are only for testing purproses */
.weather_temp {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.7rem;
    color: #3E2B2F;
    /* background-color: #000; */
}

.weather_high {
    width: 39%;
    font-weight: bold;
    /* background-color: #FF4713; */
    /* color: #FFF; */
}

.slash {
    width: 20%;
    /* background-color: lightblue; */
    color: #717274;
    margin: 0 0.5rem;
}

.weather_low {
    width: 39%;
    font-weight: bold;
    /* background-color: #FFF; */
    /* color: #000; */
}

/* Ray's old code */
/* .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: static;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    height: 5.0rem;
    background-color: #eee;
    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;

    /* 3 words per second */
    -webkit-animation-duration: 44s;
    animation-duration: 44s;
  }
  .ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: 2rem;

    background-color: #eee;
    color: #3E2B2F;
  }

  .ticker__item b {
      font-size: 2.5rem;
      font-weight: bold;
      color: #248f71;
      text-transform: uppercase;
  }

/* Old ticker tape code */
/* @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 {
    width: 11%;
    padding: 0;
    margin: 0;
    border: 1px #90D5AC solid;
    overflow: hidden;
}

.bottom-left img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: -0.2rem 0 0 0;
}

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

.red1 {
    color: red;
}

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

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

.left_side_top {
    width: 42.0rem;
    height: 12.8rem;
    background-color: #FFF;
    color: #3E2B2F;
    font-size: 2.0rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

/* .left_side_top:last-child::after {
    padding: 0;
} */

.logo {
    width: 100%;
    height: 10.0rem;
    margin: -1.0rem 0 1.0rem 0;
    background-color: #FFF;
    text-align: center;
}

.logo img {
    width: 95%;
    height: auto;
    padding: 0;
}

/* .faculty
    width: 40%;
    height: 7.0rem;
    margin: 1.5rem 1.0rem 0 1.0rem;
    background-color: blueviolet;
}

.facultyText {
    text-align: left;
    text-transform: uppercase;
    margin: 0 auto;
} */

.left_side_middle {
    width: 42.0rem;
    /* Original height */
    /* height: 12.5rem; */
    height: 13rem;
    background-color: #dedede;
    color: #FFF;
}

.left_side_bottom {
    width: 42.0rem;
    /* original height */
    height: 36.5rem;
    /* height: 32.6rem; */
    background-color: #727272;
    color: #FFF;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.left_side_bottom>iframe {
    width: 42.0rem;
    height: 36.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;
    color: #955472;
    font-size: 3.0rem;
}

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

/* DC News */
.rsb-left {
    float: left;
    width: 20%;
    height: 18.625rem;
    padding: 5.0rem 2.0rem;
    color: #FFF;
    background-color: #248f71;
    background-image: -webkit-linear-gradient(140deg, #2f9579 70%, #0b8261 30%);
    text-align: right;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 4.0rem;
}

/* .rsb-left {
    float: left;
    width: 20%;
    height: 18.625rem;
    padding: 5.0rem 2.0rem;
    color: #FFF;
    background-color: #4c9676;
    background-image: -webkit-linear-gradient(140deg, #4c9676 50%, #367757 50%);
} */

/* .rsb-left-text {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    color: #FFF;
    text-align: right;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 4.0rem;
} */

.rsb-right {
    float: right;
    width: 80%;
    height: 18.625rem;
    color: #3E2B2F;
    /* color: #3E2B2F; */
    /* padding: 2.5rem; */
    background-color: #FFF;
    font-size: 2.0rem;
    padding: 0;
}

/* News section font styles */
.rsb-right h3 {
    font-size: 3.0rem;
    font-weight: bold;
    color: #248f71;
    margin: 0;
    padding: 0;
}

.rsb-right h4 {
    font-size: 2.0rem;
    font-weight: normal;
    color: #D58F29;
    margin: 0.3rem 0 0 0;
    padding: 0;
}


.rsb-right div {
    margin: 0.5rem;
    padding: 0;
    /* background-color: rebeccapurple; */
}

.slick-dots {
    bottom: 1.0rem;
}

/* style of unactive dots */
.slick-dots li button::before {
    color: #3E2B2F;
    opacity: 0.5;
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

/* style of active dots */
.slick-dots li.slick-active button::before {
    color: #3E2B2F;
    opacity: 1.0;
    font-size: 12px;
    /* border: 0.3rem #3E2B2F solid;
    border-radius: 2.0rem; */
}

/* Old styles of dots in News */
/* style of unactive dots */
/* .slick-dots li button::before {
    color: #721B43;
    opacity: 0.5;
    font-size: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
} */

/* style of unactive dots */
/* .slick-dots li.slick-active button::before {
    color: #721B43;
    opacity: 1.0;
    font-size: 10px;
} */

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

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