

body {
  background: var(--two);
  background-image: var(--bgimage);
  background-size: 50%;
}
.all {
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 500px;
  width: 90%;
  height: 60%;
  max-height: 300px;
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: auto 3fr; 
  grid-gap: 2% 2%; 
  grid-template-areas: 
    "top-box top-box"
    "coverbuttons allpods";
}
.top-box {
  grid-area: top-box;
  justify-content: space-evenly;
  align-content: center;
  background-color: var(--bgc);
  border-radius: 25px;
  padding: 20px;
  color:var(--txt);
}
.cover-buttons {
  grid-area: coverbuttons;
  background-color: var(--bgc);
  padding: 5%;
  height: auto;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
}
.podfic-playlist {
  grid-area: allpods;
  background-color: var(--bgc);
  color: var(--pltxt);
  padding: 5%;
  border-radius: 25px;
  overflow: scroll;
}

.podfic-info {
  display: flex;
}
.ao3pod, .text-link {
  font-size: 30px;
  color:#000;
/*    filter: var(--ao3icon);*/
  height: 30px;
}
.title-author {
  flex-grow: 1;
  text-align: center;
}
.title {
  font-size: 22px;
}
.dividers {
  display: flex;
  justify-content: center;
  height: 12px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.flipright{
  transform: rotate(3deg);
  margin-right: 10px;
  margin-left: 10px;
}
.flipleft{
  transform: rotateY(180deg);
  margin-right: 10px;
  margin-left: 10px;
}
.mytheme {
  text-transform:uppercase;
  letter-spacing:1px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.playing {
  display: flex;
  justify-content: space-between;
}

.podfic-cover {
  border: black solid 2px;
  width: 100%;
}
.buttons {
  display:flex;
  justify-content: space-between;
  text-align: center!important;
}
.buttons button {
  box-sizing: border-box;
  width: 19%;
  appearance: none;
  background-color: transparent;
  border: 2px solid var(--pltxt);
  border-radius: 0.6em;
  color: var(--pltxt);
  cursor: pointer;
  align-self: center;
  text-align: center;
  margin-top: 10px;

  &:hover,
  &:focus {
    color: var(--btnhv);
    border: 2px solid var(--btnhv);
    outline: 0;
  }
}
.volcontrols {
  display: flex;
  align-content: center;
  margin-top: 2%;
}
#toggle_mute {
  box-sizing: border-box;
  appearance: none;
  width: 35px;
  margin-right: 5px;
  background-color: transparent;
  border: 2px solid var(--pltxt);
  border-radius: 0.6em;
  color: var(--pltxt);
  cursor: pointer;
  align-self: center;
  text-align: center;

  &:hover,
  &:focus {
    color: var(--btnhv);
    border: 2px solid var(--btnhv);
    outline: 0;
  }
}

.podfic-playlist-pod {
  display: flex;
  height: 21px;
  padding-bottom: 5px;
}
.miniplay {
  text-align: center;
  align-items: center;
  font-size: 11px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  appearance: none;
  background-color: transparent;
  border: 2px solid var(--pltxt);
  border-radius: 0.6em;
  color: var(--pltxt);
  cursor: pointer;
  align-self: center;
  text-align: center;
  margin-right: 3px;
  &:hover,
  &:focus {
    color: var(--btnhv);
    border:2px solid var(--btnhv);
    outline: 0;
  }
}
.poddetails {
  flex-grow: 1;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}
.looong {
  text-align: right;
}

#time_range {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background-color: transparent;

  &:focus {
    outline-color: var(--txt);
  }
}
#time_range::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  appearance: none;
  height: 15px;
  border-radius: 25px;
  background: var(--track-b);
  background: var(--track-w);
  background: var(--track-m);
  background: var(--track);
}
#time_range::-moz-range-track {
  -moz-appearance: none;
  appearance: none;
  height: 15px;
  border-radius: 25px;
  background: var(--track-b);
  background: var(--track-m);
  background: var(--track);
}
#time_range::-ms-track {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 15px;
  border-radius: 25px;
  background: var(--track-b);
  background: var(--track-w);
  background: var(--track-m);
  background: var(--track);
}
#time_range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  background: var(--track-pointer);
  background-size: 100%;
  border: 0px solid #000000;
  background-position: left;
  background-repeat: no-repeat;
  height: 25px;
  width: 25px;
  bottom: 5px;
  &:active {
    cursor: grabbing;
  }
}
#time_range::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background: var(--track-pointer);
  background-size: 100%;
  border: 0px solid #000000;
  background-position: left;
  background-repeat: no-repeat;
  height: 25px;
  width: 25px;
  cursor: grab;
  &:active {
    cursor: grabbing;
  }
}
#time_range::-ms-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background: var(--track-pointer);
  background-size: 100%;
  border: 0px solid #000000;
  background-position: left;
  background-repeat: no-repeat;
  height: 25px;
  width: 25px;
  &:active {
    cursor: grabbing;
  }
}

.volume_range {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  margin-top: 2%;
  height: 15px;
  width: 100%;
  &:focus {
    outline-color: var(--txt);
  }
}
.volume_range::-webkit-slider-runnable-track {
  -webkit-appearance: slider-vertical;
  appearance: none;
  height: 10px;
  width: 100%;
  background: var(--vol-b);
  background: var(--vol-m);
  background: var(--vol-w);
  background: var(--vols);
}
.volume_range::-moz-range-track {
  -moz-appearance: none;
  appearance: none;
  height: 10px;
  width: 100%;
  background: var(--vol-b);
  background: var(--vol-m);
  background: var(--vol-w);
  background: var(--vols);
}
.volume_range::-ms-track {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 10px;
  background: var(--vol-b);
  background: var(--vol-m);
  background: var(--vol-w);
  background: var(--vols);
}
.volume_range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  background: var(--vol-pointer);
  background-size: 99%;
  border: 0px solid #000000;
  background-position: left;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  cursor: grab;
  &:active {
    cursor: grabbing;
  }
}
.volume_range::-moz-range-thumb {
  -moz-appearance: none;
  position: relative;
  background: var(--vol-pointer);
  background-size: 99%;
  border: 0px solid #000000;
  background-position: left;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  cursor: grab;
  &:active {
    cursor: grabbing;
  }
}
.volume_range::-ms-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background: var(--vol-pointer);
  background-size: 99%;
  border: 0px solid #000000;
  background-position: left;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  cursor: grab;
  &:active {
    cursor: grabbing;
  }
}


::-webkit-scrollbar {
  width: 4px!important;
  height: 4px!important;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}

#menulinks {
  position:fixed;
  bottom:0;left:0;
  margin-bottom:15px;
  margin-left:15px;
  height:auto;
  z-index:3000;
  text-align: center;
}
.menubtns {
  color: #19bc8b;
  width: 35px;
  height:35px;
  padding: 1px;
  margin-top: 7px;
/*    transition: 0.25s;*/
  transition: color 1s;
  background: var(--pltxt);
  box-shadow: .2em .2em 0 0 var(--txt), inset .2em .2em 0 0 var(--txt);

  &:hover,
  &:focus {
    animation: blinds 0.75s linear forwards;
    background: linear-gradient(0deg, var(--txt) 25%, transparent 25%) 0 0 / 0.5em 0.5em, linear-gradient(0deg, var(--grnn) 50%, transparent 50%) 0 0 / 1em 1em;
    color: adjust-hue(var(--txt),180);
  }
}
@keyframes blinds {
  100% {
    background-position: 0 0, 0 -3em;
    background-size: 0 0, 1em 6em;
  }
}
.menuimg {
  padding-top: 2px;
  padding-left: 2px;
  width: 90%;
  height: 90%;
}

.gltch {
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
}
.gltch:hover:after {
  content: "deepend";
  position: absolute;
  left: 2px;
  top: 2px;
  clip: rect(0, 900px, 0, 0);
  animation: glitch 3s infinite alternate-reverse;
}
.gltch:hover:before {
  content: "deepend";
  position: absolute;
  left: -2px;
  top: -2px;
  clip: rect(0, 900px, 0, 0);
  animation: glitch 3s infinite alternate-reverse;
}

@keyframes glitch {
  0% {clip: rect(63px, 9999px, 55px, 0);}
  5% {clip: rect(69px, 9999px, 4px, 0);}
  10% {clip: rect(71px, 9999px, 75px, 0);}
  15% {clip: rect(37px, 9999px, 54px, 0);}
  20% {clip: rect(46px, 9999px, 61px, 0);}
  25% {clip: rect(3px, 9999px, 4px, 0);}
  30% {clip: rect(100px, 9999px, 24px, 0);}
  35% {clip: rect(34px, 9999px, 98px, 0);}
  40% {clip: rect(58px, 9999px, 38px, 0);}
  45% {clip: rect(58px, 9999px, 89px, 0);}
  50% {clip: rect(31px, 9999px, 70px, 0);}
  55% {clip: rect(8px, 9999px, 25px, 0);}
  60% {clip: rect(62px, 9999px, 58px, 0);}
  65% {clip: rect(45px, 9999px, 7px, 0);}
  70% {clip: rect(66px, 9999px, 10px, 0);}
  75% {clip: rect(4px, 9999px, 66px, 0);}
  80% {clip: rect(69px, 9999px, 53px, 0);}
  85% {clip: rect(19px, 9999px, 76px, 0);}
  90% {clip: rect(32px, 9999px, 35px, 0);}
  95% {clip: rect(36px, 9999px, 7px, 0);}
  100% {clip: rect(74px, 9999px, 89px, 0);}
}