.container-fluid {
    background: #f1f1f1;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 2px solid rgba(42, 173, 229, 0.8) ;
    /*2aade5 to rgba(42, 173, 229, 0.5) */
    
    font-family: Arial, Helvetica, sans-serif;
    /* font-weight: bold;
     */
   
    
}

#content {
    padding-top: 1.7rem;
    /* add a white veil / filter to the background image and blur it */
    background: rgba(255, 255, 255, 0.9) url("https://images.unsplash.com/photo-1519680772-8b5b0b5e1b1a?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=8b5b0b5e1b1a&auto=format&fit=crop&w=1350&q=80") no-repeat center center fixed;
    
}

#content * { 
    color: rgba(42, 173, 229,1) !important;
}

.navbar-brand {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    /* color: #000 !important; */
    color: rgba(42, 173, 229,1) !important;
}
.navbar-brand:hover {
    color: blue !important;
    /* font-weight: bold; */
    text-decoration: underline;
} 

.nav.navbar-nav.navbar-right {
    /* margin-right: 0rem; */
    padding-right: 1rem;
}

.toggle-nav-container {
    margin-top: 1rem;
}

ul.trackListing {
    background-color: rgb(38, 0, 255) !important;
    border-radius: 1rem;
}

div.ap-button.ap-play.ap-stopped, 
div.ap-button.ap-play.ap-stopped:before, 
div.ap-button.ap-play.ap-playing::before,
.ap-position 
{
    color: rgb(0, 179, 255) !important;

}

.ap-volume-group *, .ap-volume-group *:before  {
    color: rgb(0, 179, 255) !important;
} 

.ap-volume-slider, .ap-volume-slider * {
    color: rgb(0, 179, 255) !important;
    /* background-color: rgb(0, 179, 255) !important; */

}
.slider-thumb, .slider-bar-progress  {
    background-color: rgb(0, 179, 255) !important;
}

.ap-button.ap-list-open, .ap-button.ap-list-open:before,
.addToPlaylist::before,

.ap-button.ap-play.ap-loading::before{
    color: rgb(0, 179, 255) !important;
}

.ap-playlist {
    background:rgba(255, 255, 255, 0.922);
    border: 3px solid rgb(21, 2, 125);
    color: rgb(0, 179, 255) !important;
}

.ap-playlist-titlebar.horizontal-spacing-8 {
    background:rgb(21, 2, 125);
    /* border: 2px solid black; */
}

.tableViewList {
    background: rgba(0,0,0,0.6);
    border-radius: 0.5rem;
    padding: 0.5rem;

}


.flex-row.horizontal-spacing-2.zeroG.pillar.fill-width.fill-height {
    background: rgba(0,0,127,0.4);
  
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.input-clear-button::before, 
.ap-button.ap-playlist-remove::before, 
.ap-button.ap-playlist-shuffle::before
{
    color: rgb(0, 179, 255) !important;
}

/* .songLibrary > div.trackTableView {
    background: rgba(0,0,0,0.6);
    border-radius: 0.5rem;
    padding: 0.5rem;
} */

div.songLibrary > h2 + div:not(div > a) {
    background: rgba(0,0,0,0.6);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.ap-playlist-item.playlist-item-playing {
    background: #e2d3f7;

}
/*look for a div that does not have a direct child of a specific type*/
/* div:not(:has(div)) {
    background: rgba(0,0,0,0.6);
    border-radius: 0.5rem;
    padding: 0.5rem;
} */

/* .roundTheme { */
    /* .roundNumber {
    font-family: 'Marguerite'; 
    font-size: 3rem;
} */

.trackTitle {
    /* font-family: 'Marguerite' !important;;  */
   
}

.navbar-brand {
    /* font-family: 'Marguerite' !important;;  */
    /* font-size: 1.5rem !important; */
}

#ob-loader {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    background: #f1f1f1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#ob-img {
    width: 50%;
    animation-name: zoomSlow;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier();
    margin: 0 auto;
}

@keyframes zoomSlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}