@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
    background: #292929;
    color: #fff;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none ! important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.wrapper2 {
    margin-left: 280px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .wrapper2 {
        margin-left: 0;
    }
}

#sidebar {
    width: 280px;
    min-height: 100vh;
    background: #202020;
    color: #fff;
    transition: all 0.3s;
    position: fixed;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebarHeader {
    padding: 10px;
    height: 30px;
    background: #202020;
}

#sidebar ul.components {
    padding: 5px 0;
    border-bottom: 1px solid #202020;
}

#sidebar ul p {
    color: #fff;
    padding: 1px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #D5B60A;
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #D5B60A;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

hr {
    color: #fff;
    background-color: #fff;
}

#mainPlayer h3,
#mainPlayer p#artist,
#mainPlayer p#duration {
    margin-bottom: 5px;
}

#main {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

input {
    background-color: #333; 
    color: #fff; 
    border: 1px solid #555;
    padding: 5px; 
}

.form-control {
    background-color: #333; 
    color: #fff; 
    border: 1px solid #555;
    padding: 5px;
}


.go {
    overflow: hidden;
    border: none;
    font-size: 30px;
    background-size: contain;
    cursor: pointer; 
    color: #fff;
    background: transparent;
}
.play {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: none;
    font-size: 0;
    background: url('other/play.png') no-repeat;
    background-size: contain;
    cursor: pointer;
}

.pause {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: none;
    font-size: 0;
    background: url('other/pause.png') no-repeat;
    background-size: contain;
    cursor: pointer;
}

.unselectable {
    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.spacebottomdiv {
    display: none; 
    position: absolute;
    bottom: 0;
    height: 200px;
}

.explicit {
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    margin-top: 8px;
    background-color: rgb(147, 147, 147);
    border-radius: 5px;
    color: #c2c2c2
}

@media only screen and (max-width: 767px) {
    .spacebottomdiv {
      display: none; 
    }
}

button:focus {
    outline: none;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 15rem;
    border: none;
}

input[type="range"]:focus {
    outline: none;
}


input[type="range"]::-webkit-slider-runnable-track {
    background: #aaaaaa;
    height: 0.25rem;
    border-radius: 8px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; 
    appearance: none;
    margin-top: -5px; 
    background-color: #ebf04d;
    height: 1rem;
    width: 1rem;    
    border-radius: 32px;
}

input[type="range"]::-webkit-slider-thumb::before {
    content: '';
    position: absolute;
    width: 100%; 
    height: 100%;
    background: #ffffff; 
    border-radius: 8px;
    margin-top: -0.25rem; 
}


input[type="range"]::-moz-range-track {
    background: #aaaaaa;
    height: 0.25rem;
    border-radius: 8px;
}

input[type="range"]::-moz-range-thumb {
    border: none;
    background-color: #ebf04d;
    height: 1rem;
    width: 1rem;
    border-radius: 32px;
}


@media only screen and (min-width: 768px) {
    #searchresultsdesktop {
        display: flex;
    }

    #searchresultsmobile {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    #onlymobileshow {
        display: flex; 
    }

    #searchresultsdesktop {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .artistinfodescription {
        max-width: 45vw;
    }
}

@media only screen and (max-width: 767px) {
    .artistinfodescription {
        max-width: 90vw;
    }
}

#backButton {
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.alert-dark {
    background-color: #292929;
    color: #9b9b9b;
}

.dropdown-menu {
    background-color: #333; 
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item:hover {
    background-color: #555 !important; 
    color: #fff !important; 
}

@media only screen and (max-width: 767px) {
    .nomobileshow {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .leftmargindesktopmobile {
        left: -280px;
    }
}

@media only screen and (max-width: 767px) {
    .leftmargindesktopmobile {
        left: 0;
    }
}

.modal {
    display: none;
    position: fixed; 
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #7a7a7a;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}  

img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h3 {
    margin-bottom: 10px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-content ul li a {
    color: #fff;
    text-decoration: none;
}

.next-song-box {
    position: absolute;
    top: 70px;
    right: 80px; 
    height: 80px;
    width: 320px;
    background-color: #434343; 
    color: #fff; 
    border: 2px solid white;
    padding: 5px 10px; 
    border-radius: 5px; 
    z-index: 1;
}