/* Used for the Episode By Date Widget */
* {
    box-sizing: border-box;

}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
    font: inherit;
    font-family:"proxima-nova", "proxima nova", "helvetica neue", "helvetica", "arial", sans-serif;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.dashboard-wrapper {
    width: 1184px;
    margin:0 auto;
}

h1 {
    font-size:20px;
    font-weight:bold;   
    padding-bottom:10px;
    padding-top:25px;

}

h2 {
    font-size:16px;
    font-weight:bold;
    padding-bottom:7px;
    padding-top:10px;

}

.header-text-big {
    font-size:30px;
    color:#414141;
    width:100%;
}


.day-select-container {
    display:flex;
    flex-direction:row-reverse;
    width:100%;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    background-color:#fff;
    position:sticky;
    top:0px;
    left:0px;
    padding:10px;
    
}

/* .day-select {
    background-color:#efefef;
    border-left:solid 1px #cccccc;
    border-bottom:solid 1px #cccccc;
    text-align:center;
    flex: 1 1 0px;
    vertical-align:middle;
} */

.day-select {
    display: inline-block;
text-align: center;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
font-style: normal;
border: 1px solid rgba(0,0,0,0.1);
margin-left:8px;
margin-top:8px;
}

.day-select:hover {
    background-color:rgba(0,0,0,0.075);
}





.day-select a {
    text-decoration:none;
    display: inline-block;
    padding: 6px 10px;

    color:black;
    font-weight:bold;
    height:100%;
    width:100%;
    vertical-align:middle;
}

.episode-display-container {
    /* display:flex;
    flex-direction:column;
    flex-grow:1; */
    margin-bottom:50px;
    height:calc(100vh - 90px);
    overflow-y:scroll;
}



.episode-list-individual:nth-child(1) {
    border-top:0;
}

.episode-list-individual {
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    background-color:white;
    box-sizing: border-box;
    width:100%;
    cursor: pointer;
    margin-bottom:10px;
    justify-content: space-between;
    box-shadow: 0px;
    overflow:hidden;
    transition: all 0.1s ease 0s;
    bottom:0px;
    display:flex;
    flex-direction: row;
    padding:20px;
    /* border:solid 1px #adadad; */
    /* border:solid 1px #adadad; */
    border-top: solid 1px rgb(6, 33, 70, 0.1);
}

.episode-image {
    order:1;
    height:120px;
    /* margin:3px; */
    width:120px;

    /* background-color:#d8d8d8; */
}

.episode-image img {
    height:120px;
    width:120px;
    /* border-radius:5px; */
    overflow: hidden;
    /* border: solid 1px #cccccc; */
    /* border-right:solid 1px #adadad; */
    /* border-right:solid 1px rgb(6, 33, 70, 0.1) ; */

    box-sizing: border-box;
}

.episode-title {
    order:1;
    flex-grow:1;
    height:auto;
    box-sizing: border-box;
    padding:20px;
    padding-top:10px;
    font-weight:bold;
    line-height:20px;
    display:flex;
    /* background-color:yellow; */
    flex-direction:column;
}
.episode-title a {
    text-decoration:none;
    color:inherit;
}


.episode-item-name {
    min-width:100%;
    order:1;
    flex-grow:1;
    text-decoration: underline;
    
    /* background-color:red; */
}

.episode-description {
    order:3;
    font-weight: normal;
    padding-top:10px;
    color:rgba(0,0,0,0.7);
}

.episode-item-datetime {
    flex-grow:1;
    order:2;
    font-weight: lighter;
    color:#707070;
    padding-top:10px;
    
    /* background-color:green; */
}

.active {
    background-color:red;
    color:white;
}
.active a {
    color:white;
}

.active:hover {
    color:#333;
}

.episode-page-link-container {
    width:100%;
    display:flex;
    height:40px;
    padding-left:20px;
    padding-right: 20px;
    line-height: 40px;
    text-align:center;
    justify-content: space-between;
    background-color:var(--autopod-station-stream-color);
    border-top:solid 1px rgba(0,0,0,0.1);
    position:fixed;
    bottom:0px;
    right:0px;
}

.episode-page-link-container a {
    font-weight:bold;
    text-decoration:none;
    color:white
}

.old-new-link {
    width:80px;
}