.episodes-list {
    display:flex;
    flex-direction:column;
    width:calc(100% - 151px);
    height:224px;
    overflow-y:scroll;
    /* background-color:rgba(140, 140, 140, 0.071); */
    margin-top:150px;
    box-sizing:border-box;
    margin-left:151px;


}
html {
  overflow-y: scroll; /* Show scrollbars */

}
.episodes-list::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
}

.episodes-list::-webkit-scrollbar-track {
  background-color: rgba(65, 65, 65, 0);
  border-radius: 0px;
  padding:2px;
  width:15px;
}

.episodes-list::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: solid 2px transparent !important;

  background-color: rgba(99, 97, 97, 0.468);
}
.episode-list-individual:hover {
    /* box-shadow: 0 10px 20px rgba(66, 42, 2, 0.15), 0 7px 7px rgba(0,0,0,0.12); */
    background-color:rgba(0,0,0,0.02);
}
.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:auto;
    cursor: pointer;
    justify-content: space-between;
    box-shadow: 0px;
    transition: all 0.1s ease 0s;
    bottom:0px;
    padding:0px;

    flex-direction: row;

    /* border:solid 1px #adadad; */
    /* border:solid 1px #adadad; */
  }

  .page-container {
    /* box-sizing:border-box; */
    overflow:hidden;
    display:grid;

  }
  
.episode-image {
    order:1;
    height:100px;
    /* margin:3px; */
    width:100px;
    border-right:solid 1px rgb(6, 33, 70, 0.1) ;

    /* 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;
    box-sizing: border-box;
    /* padding:20px; */
    /* padding-top:8px; */
    padding:10px;
    padding-left:20px;
    font-weight:bold;
    /* 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; */
}



.inline-player {
    width: calc(100% - 1px);
    height:150px;
    top:0px;
    /* bckground-color:rgb(0,0,0,0.2); */
    display:flex;
    flex-direction: row;
    box-sizing: border-box;
    position:fixed;
    overflow:hidden;
    /* box-shadow: 0 10px 20px rgba (66, 42, 2, 0.15), 0 7px 7px rgba(0,0,0,0.12); */

}

.compact-row-one {
  order:1;
  display:flex;
  height:50px;
  flex-direction:row;

}

#playing-image {
    order:1;
    box-sizing:border-box;
    top:0px;
    height:150px;
    width:151px;
    border-right:solid 1px rgb(6, 33, 70, 0.1) ;

}

#playing-title {
    order:2;
    margin-top:0px;
    /* margin-left:20px; */
    font-weight:bold;
    padding:20px;
    padding-top:13px;
    color:rgba(0,0,0,0.7);
}

.leftwrap {
    order: 2;
    flex-grow: 1;
}

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;
  }



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: 2px solid #00000090;
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #bababa;
    cursor: pointer;
    margin-top: -7px; /* 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 #00000015, 0px 0px 1px #0d0d0d15;
    border: 1px solid #00000030;
    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 #00000015, 0px 0px 1px #0d0d0d15;
    border: 1px solid #00000030;
    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: #00000015;
    border-radius: 1.3px;
    border: 0.2px solid #01010115;
  }
  
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #00000015;
  }
  
  input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    /* box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
    background: #00000015;
    border-radius: 1.3px;
    border: 0.2px solid #01010115;
  }
  
  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: #00000015;
    border: 0.2px solid #01010115;
    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: #00000015;
    border: 0.2px solid #01010115;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d27;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #000000;
  }

  .autopod-audio-controls {
    display:flex;
    flex-direction:row;
    justify-content: space-around;
    font-size:2em;
    margin-top:20px;
    padding-bottom:70px;
    position:sticky;
    max-width:300px;
    margin:0 auto;
}

#autopod-audio-duration {
    text-align:center;
    padding-top:10px;
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    padding-left:40px;
    padding-right:40px;
    font-size:0.8em;
    color:rgba(0,0,0,0.5) 
}
.audio-controls-play-pause {
    cursor: pointer;
    order:2;
    height:auto;
    text-align:center;
    font-weight:bold;
    height:100%;
    padding-left:24px;
    padding-right:24px;
    padding-top:17px;
    box-sizing: border-box;
}

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

}

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

}



@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;
      margin-top:15px;
      width:calc(100% - 40px);
      height:calc((100vw - 40px));
      max-height:calc(80vh - 410px);
      box-sizing: border-box;
      box-shadow: 0 0px 0px rgba(0, 0, 0, 0), 0 0px 0px rgba(0,0,0,0.0) !important;
      text-align: center;
    }
    .autopod-audio-image img {
      /* margin:20px; */
      height:100%;
      width:auto;
      max-width:100%;
      max-height:100%;
      border-radius:5px;
      box-shadow:0 16px 16px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.15);
    }

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

    .episodes-list {
      margin-left:0px;
    }

    #playing-image {
      display:none;
      visibility:hidden;
    }
    .playing-title {
      height:auto;
    }
    .compact-row-one {
      height:100px
    }
    .audio-controls-play-pause {
      padding-top:42px;
    }
  }

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

    .episode-list-individual {
        color:black;
    }
    .episode-item-datetime {
        color:black;
    }

   
}

.compact-row-two {
  order:2;
  display:flex;
  height:50px;
  padding-bottom:3px;
}

#current-time {
  order:1;
  width:10%;
  line-height:50px;
  text-align:center;
  font-size:0.7rem;
  padding-left:10px;
  padding-right:10px;
  color:rgba(0,0,0,0.6);
  min-width:80px;
}

#range-control {
  flex-grow:1;
  order:3;
  padding-top:5px;
  padding-left:10px;
  padding-right:10px;

}

#remaining-time {
  order:3;
  width:10%;  line-height:50px;
  text-align:center;
  font-size:0.7rem;
  color:rgba(0,0,0,0.6);
  padding-left:10px;
  padding-right:10px;
  min-width:80px;

}

#compact-share-box {
  order:4;
  width:10%;
  display:flex;
  flex-direction:row;
  justify-content: space-around;
  padding-top:17px;
  padding-left:10px;
  padding-right:15px;
  color:rgba(0,0,0,0.6);
  min-width:80px;
  max-width:200px;
}

.compact-row-three {
  order:3;
  padding:17px;
  height:100%;
  color:rgba(0,0,0,1);
  font-size:1rem;
}

.modal {
  padding: 15px ; 
  border: solid 1px rgba(181, 26, 26, 0.01) !important;
}
.modal .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;

}
.modal .modal-body {
  overflow-y: auto;
}

.smd {
  margin-right:10px;
}
.link-to-player {
  margin:10px !important;
}