﻿@font-face {
    font-family: 'EuroStyleNormal';
    src: url('EuroStyleNormal.eot'), url('EuroStyleNormal.ttf') format('truetype'), url('EuroStyleNormal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    font-size: 1.1em;
    color: #fff;
    line-height: 1.5em;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    background-color: #fc5e21;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#main-container {
    overflow: hidden;
}

#list-area {
    width: 27.3%;
    padding: 2% 0.5% 0.5% 2.2%;
    background-color: #fc5e21;
    height: 78vh;
}

/* Side deck area takes up 70% of screen on right with 3:2 ratio sized slides */
#content-area {
    width: 70%;
    height: auto;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0
}

/* Gradient orange overlay at left slide edge */
.overlay {
    position: absolute;
    left: 30%;
    width: 100px;
    height: 100%;
	background: linear-gradient(to right, #fc5e21, rgba(252, 94, 33, 0.5) 50%, transparent);         /* Standard */
	background: -webkit-linear-gradient(to right, #fc5e21, rgba(252, 94, 33, 0.5) 50%, transparent); /* Chrome, Safari (WebKit) */
	background: -moz-linear-gradient(to right, #fc5e21, rgba(252, 94, 33, 0.5) 50%, transparent);    /* Firefox */
	background: -o-linear-gradient(to right, #fc5e21, rgba(252, 94, 33, 0.5) 50%, transparent);      /* Opera */
    z-index: 2;
}

#logo {
    width: 290px;
    height: 75px;
    margin: 0 auto;
    background-image: url(Images/COS-White-Blue-Outline-No-Tree.png);
}

h1 {
    font-size: 1.5vw;
    margin: 10px 0 20px;
    text-align: center;
    color: #011689;
}

h3 {
    font-family: 'EuroStyleNormal';
    letter-spacing: 0.1em;
    font-size: 1.3vw;
    margin: 15px 0 5px;
}

ul {
    font-weight: bold;
    padding-left: 0;
    margin: 0 0 0 15px;
}

ul ul {
    list-style-type: none;
    padding-left: 5px;
    margin-left: 0;
    font-weight: normal;
}

#no-cancelled-classes {
    color: #011689;
}

.invert-img {
	-webkit-filter:invert(100%);
	filter:progid:DXImageTransform.Microsoft.BasicImage(invert='1');
}

.event-date, .event-title {
    font-weight: bold;
    margin: 0 0 0 15px;
    float: left;
}

#slide-deck {
    width: 100%;
    height: auto;
}

#slide-deck img {
    position: absolute;
    width: 100%;
    opacity: 0; /* All slides in deck start hidden */
    transition: opacity 1s ease-in-out; /* Disolve in/out slide */
}

#slide-deck img.active {
    opacity: 1; /* When active, show slide */
}

.slide-wrapper {
    padding-bottom: 66.66%; /* 3:2 aspect ratio */
}

#slide-deck video {
    position: absolute;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    left: -6.5%; /* -8.75% would exactly center a standard HD or UHD video but a little extra is added to compensate for the gradient overlay; the sides of the video are cropped evenly */ 
	border: 0 transparent none;
}

#slide-deck video.active {
    opacity: 1;
}

#weather-section {
    height: 500px; /* Intentionally set way beyond the size it will ever need to cover the entire bottom with matching blue of widget */
    background-color: #1f567c; /* Matching blue of widget*/
    position: relative;
    z-index: 2;
}
#weather-section iframe {
	top: inherit !important;
	margin-top: .75% !important;
}
.weatherwidget-io {
	height: 100% !important;
}