html {
  height: 100%;
  background-color: #372820;
  margin: 0;
  padding: 0;
}

body {
  /*background-image: url(../img/genbackground.jpg);*/

  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Jaldi";
  font-size: 2.5vw;
  margin: 0;
  padding: 0;
}

img {
  /*max-height: 105px;
  max-width: 105px;*/
  margin-top: auto;
  margin-bottom: auto;
  vertical-align: middle;
  /*border-radius: 20px 20px 20px 20px;*/
}

.empty-row {
  height: 15px;
}

.rowbackground {
  background: rgba(104, 104, 104, 0.6);
}

.lightbackground {
  background: rgba(204, 204, 204, 0.6);
}

#playerall {
  display: flex;
  width: 100%;
  height: 100%;
}

#nav {
  display: flex;
  height: auto;
  width: 100%;
  left: 10%;
  background-color: transparent;
  text-align: center;
  vertical-align: middle;
}

.now-playing {
  background: transparent;
  width: 100%;
  margin: 0.5vw;
}

.picture-background {
  background: transparent;
  height: auto;
  width: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /*float: right;*/
}
.now-playing-pic {
  height: 170px;
  max-height: 170px;
  max-width: 170px;
  padding-top: 10px;
  padding-left: 12.5px;
  padding-right: 12.5px;
  padding-bottom: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.hidden {
  visibility: hidden;
}

.text {
  /*color: #2c5625;*/
  color: #739e2f;
  
}

.showing-artist {
  background-image: url("../images/doobeedoologocolor.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}

.now-playing-text {
  font-size: 3vw;
}

#artist-pic {
  line-height: 90%; /*reduces line height between artist/title*/
}

#track-year,
#track-artist,
#track-title,
#track-time,
#track-empty {
 /* padding-left: 1.2vw; */
  line-height: 100%; /*reduces line height between artist/title*/
/*  margin-left: 3.5vw; */
}
.rounded-mx-auto-d-block {
  border-radius: 10px 10px 10px 10px;
  opacity: 0.5;
}

.img-cover {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
}

#bottomblock {
  position: fixed;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  bottom: 2%;
}

#pButton {
  float: left; }

#pButton {
  margin-top: 12px;
  margin-right: 20px; 
  cursor: pointer; }


#ex1Slider  .slider {
  -webkit-appearance: none;
  float: right;
  width: 80%;
  height: 5px;
  margin-top: -10px;
  background: #96caa8;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

#ex1 {
opacity: 0;

}

#ex1Slider  .slider:hover {
  opacity: 1;
}
  
/*#ex1Slider .slider-selection {
    background: #96caa8;
  }
*/
#ex1Slider  .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
/*  width: 10px;
  height: 10px;*/
  background:#96caa8;
  cursor: pointer;
}

#ex1Slider  .slider::-moz-range-thumb {
/*  width: 10px;
  height: 10px;*/
  background:#96caa8;
  cursor: pointer;
}

.slider.slider-horizontal{
    /* sample value - set it as you like*/
-webkit-appearance: none;
width:80% !important;
height: 5px !important;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}


#ex1Slider .slider-handle {
  position: absolute;
  background: #01240c;
  width: 20px;
  height: 5px;
  margin-top: -1px; 
}

.slider .tooltip {
	display: none !important;
}


/*
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
*/
.videobg {
  height: 100vh;
  overflow: hidden;
  position: relative; /* requires for to position video properly */
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover; /* combined with 'absolute', works like background-size, but for DOM elements */
}