html { margin: 0; padding: 0; }
body, .container {
    font-family: "Verdana", sans-serif;
    font-optical-sizing: auto;
    font-size: 86px;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    margin: 0;
    height: 3840px;
    width: 2160px;
    border: solid 1px #999;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    overflow: hidden;
}

main {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.logo {
    width: 100%;
    max-width: 100%;
}

h1 {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3.35em;
	text-transform:uppercase;
	text-align: center;
	padding: 0 15px 0 15px;
	margin: 25px auto -10px auto;
	color: #bf795f;
}

.current-class-info {
    font-size: 1em;
    float: right;
	margin:0 45px 20px 0;
	color: #666;
}

.trainer {
    font-family: "Libre Baskerville", serif;
	font-size: 1em;
    float: right;
	margin-right:30px;
	color: #bf795f;
}

.current-class > .cc-container {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

.circuits {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    height: 3400px;
    container-type: size;
    container-name: circuits;
}

.circuit {
    margin: 20px 0px;
    flex: 1;
    padding: 2% 2% 2% 0;    
	font-size: .8em;
    display: flex;
    align-content: center;
    justify-content: center;
}


.circuit-title {
    color: white;
    font-size: 2.25em;
    flex: 1;
    flex-grow: 3;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.circuit-title-inner {
    padding: 50px;
    color: white;
    border-radius: 50%;
    width: 190px;
	height:190px;
    text-align: center;
    display: inline-block;
    line-height: 180px;
}

.circuit:nth-of-type(1) .circuit-title-inner {
    background-color: #666;
}
.circuit:nth-of-type(1) .circuit-details ol li::marker, .circuit:nth-of-type(1) .circuit-details ul li::marker {
    color: #666;
}

.circuit:nth-of-type(2) .circuit-title-inner {
    background-color: #748679;
}
.circuit:nth-of-type(2) .circuit-details ol li::marker, .circuit:nth-of-type(2) .circuit-details ul li::marker {
    color: #748679;
}


.circuit:nth-of-type(3) .circuit-title-inner {
    background-color: #bf795f;
}
.circuit:nth-of-type(3) .circuit-details ol li::marker, .circuit:nth-of-type(3) .circuit-details ul li::marker {
    color: #bf795f;
}

.circuit:nth-of-type(4) .circuit-title-inner {
    background-color: #b1955e;
}
.circuit:nth-of-type(4) .circuit-details ol li::marker, .circuit:nth-of-type(4) .circuit-details ul li::marker {
    color: #b1955e;
}

.circuit:nth-of-type(5) .circuit-title-inner {
    background-color: #4f6b67;
}
.circuit:nth-of-type(5) .circuit-details ol li::marker, .circuit:nth-of-type(5) .circuit-details ul li::marker {
    color: #4f6b67;
}

.circuit:nth-child(odd) {
  background-color: #f7f7f7;
}

.circuit-details {
    padding: 10px 10px 10px 30px; 
    font-size: 1.4em;
	line-height:1.2em;
    flex: 1;
    flex-grow: 10;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
.circuit-details ol, .circuit-details ul {
    margin: 20px 0px 0 0px; 
	list-style-type: disc;
	color:#606060;
}

.circuit ol li {
	margin-bottom:60px;

}

.circuit-details li::marker{
	color: #bf795f
}

.no-classes {
    /* Jordan to fill out */
}

#next-class {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.5em;
    padding: 8px;
    background-color: #333;
    border-radius: 16px; 
    display: none;
}

.full-schedule {
    display: flex;
    flex-direction: column;
    flex-grow: inherit;
}
.full-schedule-class {
    background-color: red; 
    flex: 1;
    margin: 20px 10px;
    border-radius: 20px; 
}

.coming-up-next {
    color: blue;
    background-color: white;
    border: solid 1px green;
    padding: 6px;
    border-radius: 12px;
    float: right;
}

.no-classes {
    text-align: center;
    position: fixed;
    top: 0;
    background-color: #bf795f;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.no-class-img {
    max-width: 40%;
    margin: auto;
}




@container circuits (max-height: 0px) {
    .circuit-title {
        float: right;
    }
}
