/* 
    Main stylesheet - does not style individual pages but
    does manage some of the bigger scope stuff - you know the drill. 
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;

}

html {
    background-color:#e0e8f3;
}

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

}

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

.autopod-audio-player {
    width:100%;
    max-width:470px;
    min-height:740px;
    height:100%;
    overflow:hidden;
    background-color:white;
    position:fixed;
    margin:0 auto;
    margin-left: calc(50% - 235px)
    /* left:calc(50% - 235px); */
    /* border:solid 1px black; */
    /* margin:20px; */
}

.autopod-search-embeddable {
  width:100%;
  height:100%;
  overflow:hidden;
  background-color:white;
  position:fixed;
  margin:0 auto;
  /* left:calc(50% - 235px); */
  /* border:solid 1px black; */
  /* margin:20px; */
}


.hidden {
  display:none;
  visibility:hidden;
}


.autopod-audio-title {
    width:100%;
    height:100px;
    padding:40px;
    box-sizing: border-box;
    font-size:30px;
    font-weight:bold;
    /* border-bottom:solid #efefef 1px; */
    color:rgb(24, 20, 20);
    padding-top:10px;
    padding-bottom:0px;
    text-align:center;
}

.autopod-audio-controls {
    display:flex;
    flex-direction:row;
    justify-content: space-around;
    font-size:50px;
    margin-top:20px;
    padding-bottom:80px;
}

.audio-controls-play-pause {
    cursor: pointer;
    order:2;
    height:auto;
    text-align:center;
    font-weight:bold;
    
}

.audio-controls-back-30 {
    order:1;
    font-size:40px;
    padding-top:5px;
    cursor: pointer;
    margin-left:40px;

}

.audio-controls-forward-30 {
    order:3;
    font-size:40px;
    padding-top:5px;
    margin-right:40px;
    cursor: pointer;

}



.autopod-audio-image {
    width:calc(100% - 80px);

    box-sizing: border-box;
    margin:40px;
    height:auto;
    object-fit: cover;
    max-height:390px;
  overflow:hidden;
    vertical-align: center;
    /* max-height:470px; */
    box-shadow: 0 16px 16px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.15);
    transform: perspective(600px) translate3d(0, 0, 0);
    transform-style: preserve-3d;
	backface-visibility: hidden;

	transition: transform 0.85s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  
}
.autopod-audio-image:hover {
		box-shadow: 0 14px 40px rgba(0,0,0,0.15), 0 10px 30px rgba(0,0,0,0.10);
	}
  
.autopod-audio-active:active {
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	}


.autopod-audio-image img {
    width: 100%;
    
    /* height:100%; */
}

.episode-item-datetime {
    font-weight:600;
    font-size:16px;
    color:#616060;
    margin-top:10px;
}

.autopod-audio-controls-scrubber {
    /* background-color:red; */
    padding-bottom:25px;
}

#range-control {
    width:70%;
    margin-left:15%;
}

input[type=range] {
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    width: 100%; /* Specific width is required for Firefox. */
    background: transparent; /* Otherwise white in Chrome */
  }
  
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
  }
  
  input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
  }
  
  input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
  
    /* Hides the slider so custom styles can be added */
    background: transparent; 
    border-color: transparent;
    color: transparent;
  }

  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #000000;
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
    margin-top: -6px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
  }
  
  /* All the same stuff for Firefox */
  input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 16px;
    width: 16px;
    margin-top: 0px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
  }
  
  /* All the same stuff for IE */
  input[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 16px;
    width: 16px;
    margin-top: 0px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
  }

  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    /* box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
    background: #000000;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
  }
  
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #000000;
  }
  
  input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    /* box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
    background: #000000;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
  }
  
  input[type=range]::-ms-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
  }
  input[type=range]::-ms-fill-lower {
    background: #000000;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  }
  input[type=range]:focus::-ms-fill-lower {
    background: #000000;
  }
  input[type=range]::-ms-fill-upper {
    background: #000000;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #000000;
  }

  .action-bar-container {
    width:100%;
    height:56px;
    /* background-color:red; */
    display:flex;
    flex-direction:row;
    border-bottom:solid 1px rgb(230, 230, 230);
  }

  .action-bar {
    order: 1;
    flex-grow:1;
    display:flex;
  }

  .action-bar-hamburger {
    order:1;
    width:60px;
    height:100%;
    border-right:solid 1px rgb(230, 230, 230);
    text-align:center;
    padding-top:15px;
    font-size:24px;
    box-sizing: border-box;
  }

  .action-bar-search {
    order:2;
    flex-grow:1;
    height:100%;
    display:flex;
    flex-direction:row;
  
    /* background-color:green; */
  }

  .action-bar-search input {
    flex-grow:1;
    outline: none;
    text-align: left;
    padding-left:10px;
    box-sizing:border-box;
    border:0px;
    font-size:18px;
  }

  ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(97, 97, 97);
    font-size:18px;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: black;
  }

  .search-button {
    width:60px;
    cursor:pointer;
    text-align:center;
    vertical-align: middle;
    font-size:24px;
    padding-top: 16px;
    box-sizing:border-box;
    border-left:solid 1px rgb(230, 230, 230);
  }



  #action-modal-container {
    width:100%;
    height:calc(100% - 56px);
    background-color:rgb(236, 236, 236);
    position:absolute;
    z-index:1000;
    overflow-x:scroll;
    overflow-y:scroll;
  }

  #action-modal-container a {
    text-decoration:none;
    color:inherit;
    display:flex;
  }

  @media (prefers-color-scheme: dark) {
    .autopod-audio-player {
      background-color: black;
    }
    * {
      color:white;
    }
    

  #searchtext {
    background-color:black;
    color:white;
    border:0px;
    outline:none;
  }

  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    /* box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
    background: #ffffff;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
  }
  
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ffffff;
  }
  
  input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    /* box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
    background: #ffffff;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
  }

  .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;
    height:auto;
    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);
  }

  img {
          /* filter: grayscale(50%); */

  }

  .episode-list-individual {
    background-color:black;
  }

  .search-button {
      background-color:black;
  }


  }

  @media screen and (max-width: 469px) {
    .autopod-audio-player {
      margin-left:0px !important;
    }
    
    .action-bar-search input {
        padding-left:10px;
    }

    .autopod-audio-title {
      height:auto;
      padding-bottom:20px;
      font-size:20px;
    }

    .autopod-audio-image {
      margin:20px;
      width:calc(100% - 40px);
    }

    .audio-controls-back-30, .audio-controls-forward-30 {
      font-size:0.7em !important;
    }
    .autopod-audio-controls {
      font-size:2em !important;
    }


  }


  .episode-list-individual {
    background-color:white;
    height:100px;
    display:flex;
    flex-direction:row;
    /* padding:20px; */
    margin:10px;
    box-sizing: border-box;
    cursor: pointer;
}

.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:calc(100% - 20px);
    height:auto;
    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; */
}



@media (prefers-color-scheme: dark) {
    .episode-individual {
        background-color:black;
    }

    .episode-list-individual {
        background-color:black
    }

    #action-modal-container {
      background-color:#333333;
    }

}

.episodes-list #action-modal-container {
  display:flex;
  flex-direction:column;
  width:100%;
  height:auto;
  padding:10px;
  box-sizing:border-box;
  
}
.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-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:20px;
  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 {
  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; */
}

