html {
    height: 100%;
}
body {
    height: calc(100% - 150px);
    font-family: Poppins,Roboto,"Helvetica Neue", sans-serif;
}
button:focus {
    outline: none!important;
}
.buttonBlue {
    background-color: #3498db;
}
.buttonBlue:hover {
    background-color: #2672a5;
}
.buttonBlue:active {
    background-color: #2672a5;
}
.maxwidth {
    max-width: 1200px!important;
    margin: auto;
    padding: 0px 20px 0px 20px;
}
.fullheight {
    overflow: auto;
}
.marginAuto {
    margin:auto;
}

.tabs {
    color:white;
    outline: none!important;
}
.header {
    position :fixed;
    top: 0px;
    background-color:#070707;
    z-index:10;
}
.playerContainer {
    position :fixed;
    height: 72px;
    width: 100%;
    bottom: -80px;
    transition-duration: 0.5s;
    background-color: #070707;
}
.playerContainerShow {
    bottom: 0px;
    transition-duration: 0.5s;
}
.player {
    height: 100%;
    justify-content: stretch;
    padding:10px;
}
.playerInfo {
    width: calc((100% - 130px) / 2);
    height: 100%;
    float:left;
}
.playerImage {
    float: left;
    border-radius: 5px;
    object-fit: cover;
    width: 50px;
    height: 50px;
}
.playerButtons {
    width: 130px;
    height: 100%;
    float:left;
}
.playerActions {
    width: calc((100% - 130px) / 2);
    height: 100%;
    float:left;
}
.playerSliderBar {
    height:20px;
    margin-top:-82px;
    margin-bottom:-10px;
    padding-top: 10px;
}
.playerSliderBarHover {
    background-color: #404040;
}
.greyborder {
    border-color: #404040!important;
}
.marginTop {
    margin-top: 150px;
}
.Headline {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.beat {
    width: 100%;
    height: 65px;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    overflow:hidden;
}
.beat:hover {
    background-color: #202020;
}
.beat:focus {
    outline: none!important;
}
.beatImage {
    float: left;
    border-radius: 5px;
    object-fit: cover;
    height: 45px;
    width: 45px;
}
.beatTitle {
    width: 800px;
    height: 22px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.beatDescription {
    height: 22px;
    font-size: 13px;
    letter-spacing: 0.2px;
    font-weight: lighter;
    color: #9f9f9f;
}

.filter {
    width: 250px;
    background-color: #1b1b1b;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 1080px) {
    /* For mobile phones: */
    .filter {
        max-width: 300px!important;
        width:100%!important;
        float:left!important;
    }
    #beats {
        width: 100%!important;
    }
}
@media only screen and (max-width: 610px) {
    /* For mobile phones: */
    .tags {
        display: none;
    }
}
.tag {
    height: 32px;
    font-size: 13px;
    letter-spacing: 0.2px;
    font-weight: lighter;
    color: #9f9f9f;
    padding: 6px 14px 6px 14px;
    margin-right:10px;
    color: #808080;
    border-color: #404040!important;
    margin-bottom: 20px;
}
.tags {
    height: 45px;
    width: calc(100% - 415px);
    overflow: hidden;
    padding-top: 6px;
    margin-left: 70px;
}
.vue-slider-rail {
    background-color: #404040!important
}
.vue-slider-process {
    background-color: #3498db!important;
}
.vue-slider-dot-handle {
    background-color: #3498db!important;
}
.custom-tooltip{
    background-color: #3498db;
    height: 24px;
    width: 50px;
    overflow: hidden;
    font-size: 13px;
    padding: 3px;
    border-radius: 6px;
    text-align: center;
    margin-top: 5px;
}
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #3498db;
    cursor: pointer;
    border-radius: 50%;
}
.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
}