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

}
.day-select-container {
    display:flex;
    flex-direction:row;
    width:100%;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    position:fixed;
    top:0px;
    left:0px;
}

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

.day-select :hover {
    background-color:#cccccc;
}

.day-select-link {
    display:inline-block;
    padding:20px;
}



.day-select a {
    text-decoration:none;
    color:black;
    font-weight:bold;
    height:100%;
    width:100%;
    vertical-align:middle;
}

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

.episode-list-individual:hover {
    box-shadow: 0 10px 20px rgba(66, 42, 2, 0.15), 0 7px 7px rgba(0,0,0,0.12);
}
.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%;
    height:100px !important;
    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;
    /* border:solid 1px #adadad; */
    /* border:solid 1px #adadad; */
    border: solid 1px rgb(6, 33, 70, 0.1);
}

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

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

.episode-image img {
    height:100px;
    width:100px;
    /* 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;
    
    /* background-color:red; */
}

.episode-item-datetime {
    flex-grow:1;
    order:2;
    font-weight: lighter;
    color:#707070;

    /* background-color:green; */
}

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

.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:#efefef;
    border-top:solid 1px #cccccc;
    position:fixed;
    bottom:0px;
    right:0px;
}

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

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