html, body {
    font-family: helvetica;
    color: #231f20;
}

.border-bottom {
    border-bottom: 3px solid #656565;
}


/*//// FIXED ///*/

body.fixed .player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

body.fixed .main {
    margin-top: 261px;
}

body.fixed .content-nav>div {
    position: fixed;
    top: 290px;
}

@media (max-width: 767px) {
    body .player {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    body .main {
        margin-top: 194px !important;
    }
    body.fixed .content-nav>div {
        position: static;
    }
}


/*//// MAIN ///*/

.main {
    margin-top: 30px;
    position: relative;
}

header a {
    position: relative;
    display: block;
}

header a span {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #FFF;
    font-size: 0.8em;
}

.go-home {
    font-size: 0.9em;
    font-weight: 700;
    display: block;
    float: left;
}

.go-home img {
    margin-bottom: 4px;
    width: 120px;
}

@media (max-width: 767px) {
    .go-home img {
        width: 60px;
    }
}

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 40px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}

#nav-icon1 span:nth-child(2) {
    top: 10px;
}

#nav-icon1 span:nth-child(3) {
    top: 20px;
}

#nav-icon1.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#TrackSearchForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #a1a1a1;
}

#TrackSearchForm input {
    border: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

#TrackSearchForm button {
    border: 0;
    background: none;
    color: #a1a1a1;
}


/*////// PLAYER /////*/

#embedsoundcloud {
    min-height: 50px;
}

.player {
    /*padding-bottom: 30px;*/
    background-color: #FFF;
    z-index: 1000;
}

#player {
    display: none;
}

.player-timeline {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #a1a1a1;
    cursor: pointer;
}

.player-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #000;
}

.player-tooltip {
    padding: 5px 10px;
    color: #FFF;
    background-color: #000;
    position: absolute;
}

.player-tooltip-arrow {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #000;
    border-width: 5px;
    margin-left: -5px;
}

.player-controls {
    margin-bottom: 10px;
}

.player-controls>* {
    margin-left: 15px;
    vertical-align: bottom;
}

.player-controls .fa {
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
}

.player-controls .fa-random.active {
    background-color: #231f20;
    color: #FFF;
}

.player-controls .fa-play-pause {
    width: 17px;
}

.player-infos-search {}

.player-infos span {
    margin-left: 10px;
    font-size: 1.5em;
    text-transform: uppercase;
}

.player-infos #name {
    font-weight: 700;
}

@media (max-width: 767px) {
    .player-infos-search {
        display: block;
    }
}


/*///// MENU ////*/

.main-menu li a {
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.content-nav {
    position: relative;
}

.rs {
    margin-bottom: 15px;
}

.rs a {
    font-size: 1.5em;
    margin-right: 10px;
}

.by-soundcloud img {
    width: 70px;
}

@media (max-width: 767px) {
    .content-nav {
        position: fixed;
        z-index: 10000;
        background-color: #FFF;
        -webkit-transform: translate3d(-200px, 0px, 0px);
        transform: translate3d(-200px, 0px, 0px);
        -webkit-transition: -webkit-transform 500ms;
        transition: -webkit-transform 500ms;
        transition: transform 500ms;
        transition: transform 500ms, -webkit-transform 500ms;
        height: 100vh;
        top:0;
        -moz-box-shadow: 10px 0px 10px 0px #9b9b9b;
        -webkit-box-shadow: 10px 0px 10px 0px #9b9b9b;
        -o-box-shadow: 10px 0px 10px 0px #9b9b9b;
        box-shadow: 10px 0px 10px 0px #9b9b9b;
        filter:progid:DXImageTransform.Microsoft.Shadow(color=#9b9b9b, Direction=90, Strength=10);
    }
    .content-nav.open {
        -webkit-transform: translate3d(0px, 0px, 0px);
        transform: translate3d(0px, 0px, 0px);
    }
}


/*////// LIST TRACK //////*/

.track-item {}

.track-item .artwork {
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    height: 0;
    padding-top: 100%;
    position: relative;
}

.track-item .play {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.track-item .play .fa-play-pause {
    color: #FFF;
    font-size: 5em;
    -webkit-transition: -webkit-transform 300ms;
    transition: -webkit-transform 300ms;
    transition: transform 300ms;
    transition: transform 300ms, -webkit-transform 300ms;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.track-item .artwork:hover .play, .track-item.active .artwork .play {
    opacity: 1;
}

.track-item .artwork:hover .play .fa-play-pause, .track-item.active .artwork .play .fa-play-pause {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.track-solo .infos {
    font-size: 2.5em;
    line-height: 1em;
}

.track-solo .infos .track-category, .track-solo .infos .track-soundcloud, .track-solo .infos .track-date {
    font-size: 0.4em;
}

.track-solo .infos .track-soundcloud {
    margin-bottom: 100px;
}

@media (max-width: 767px) {}

@media (min-width: 768px) {
    .track-solo .infos .track-soundcloud {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .track-solo .infos .track-soundcloud {
        margin-bottom: 50px;
    }
}

@media (min-width: 1200px) {
    .track-solo .infos .track-soundcloud {
        margin-bottom: 100px;
    }
}

.track-category {
    font-size: 0.9em;
    color: #a1a1a1;
}

.pagination>li>a, .pagination>li>span {
    border: 0px;
    color: #000;
}

.pagination>li>a:hover, .pagination>li>span:hover {
    background-color: #000;
    color: #FFF;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #000;
    color: #FFF;
    border-radius: 0 !important;
}
.content-page {
    margin-bottom: 60px;
}
.content-page h1 {
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 4em;
}

.content-page a {
    text-decoration: underline;
}
.content-page a:hover {
    text-decoration: none;
}
