@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");

body,
html {
    font-family: "Source Sans Pro", sans-serif;
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(215, 243, 246, 1);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .004);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -khtml-user-select: none;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 178, 250, 1);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    z-index: 500;
    /* makes sure it stays on top */
}
#status {
    width: 50px;
    height: 30px;
    position: fixed;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    margin: -25px 0 0 -15px;
    /* is width and height divided by two */
}

.player {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
}
.player_body {
    position: relative;
    z-index: 10;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    /*width: 275px;*/
    width: 100%;
    /*height: 490px;*/
    height: 100%;
    margin: auto;
    background: #000000;
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, .15), 0 15px 35px 0 rgba(0, 105, 92, .5);
}

.player_content {
    position: relative;
    z-index: 50;
    width: 100%;
    /*height: 490px;*/
    height: 100%;
}
.player_header {
    position: relative;
    z-index: 55;
    height: 10%;
    padding: 18px 0;
    color: #fff;
    background-color: #000000;
}
.player_img {
    position: relative;
    width: 100%;
    height: 65%;
    max-height: 65%;
}
.timeline_wrap {
    position: relative;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    height: 15%;
    max-height: 15%;
    -webkit-transition: top .2s ease-in-out;
    transition: top .2s ease-in-out;
}
.player_btns {
    position: relative;
    /*width: 270px;*/
    width: 100%;
    height: 5%;
    max-height: 5%;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: rgba(255, 255, 255, 1);
}
.share{
    height: 10%;
    max-height: 10%;
}
.marquee {
    text-align: center;
    font-size: medium;
}
.marquee_div {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* border-top-left-radius: 30px;
    border-top-right-radius: 30px; */
}
.header_name {
    color: #fff;
    /* font-weight: 500; */
    /* text-transform: uppercase; */
}
.time_of_song {
    padding-top: 7px;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
    color: rgba(255, 255, 255, 1);
}

/* seek işlemleri */
.seek_background {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    background-color: black;
    border-radius: 3px;
    z-index: 3001;
}
.seek {
    height: 5px;
    background-color: white;
    position: relative;
    border-radius: 3px;
    z-index: 3002;
}
.seek_circle {
    display: inline-block;
    vertical-align: middle;
    width: 19px;
    height: 19px;
    background-color: red;
    border: solid 3px black;
    border-radius: 50%;
    position: absolute;
    top: -7px;
    left: calc(100% - 5px);
    z-index: 3003;
}
/* seek işlemleri sonu */

/* player listesi */
#plList li {
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 7px 0;
    font-size: small;
}
#plList li:hover {
    background-color: rgba(250, 4, 4, 0.1);
}
.plItem {
    position: relative;
}
.plTitle {
    left: 50px;
    overflow: hidden;
    position: absolute;
    right: 65px;
    text-overflow: ellipsis;
    top: 0;
    white-space: nowrap;
}
.plNum {
    padding-left: 21px;
    width: 25px;
}
.plLength {
    padding-left: 21px;
    position: absolute;
    right: 21px;
    top: 0;
}
.plSel,
.plSel:hover {
    background-color: rgba(0, 0, 0, .1);
    color: #fff;
    cursor: default !important;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

/* Hamburger menu */
.hamburger-menu,
.back_btn,
.nav_menu {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.hamburger-menu {
    position: absolute;
    z-index: 70;
    top: 18px;
    right: 16px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.hamburger-menu.slide {
    margin-right: 232px;
}
.back_btn.slide {
    margin-left: -232px;
}
/* Nav */
.nav_menu {
    position: absolute;
    z-index: 70;
    right: -235px;
    width: 235px;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
}
.nav_list {
    position: relative;
}
.nav_item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.nav_item p {
    font-size: 14px;
    font-weight: 300;
    margin: -1px 0;
    color: rgba(0, 0, 0, .9);
}
.nav_item a {
    font-size: 22px;
    font-weight: 300;
    color: rgba(0, 0, 0, 1);
}
.nav_menu.open {
    right: 0;
}
/* Player Fade */
.player_fade {
    -webkit-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out;
    background: rgba(0, 0, 0, 0);
}
.player_fade.player_fade_on {
    position: absolute;
    z-index: 65;
    /*width: 275px;
        height: 490px;*/
    width: 100%;
    height: 90%;
    background: rgba(0, 0, 0, .5);
}

.player_playlist {
    position: relative;
    z-index: 60;
    overflow-y: scroll;
    width: 100%;
    -webkit-transition: top .2s ease-in-out;
    transition: top .2s ease-in-out;
    background-color: #000000;
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    border: 1px solid white;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: white;
}
/* Scrollbar styles End */


.touch-screen .menu_btn:hover,
.touch-screen .random_btn:hover,
.touch-screen .prev_btn:hover,
.touch-screen .next_btn:hover,
.touch-screen .repeat_btn:hover {
    color: #fff;
}
.touch-screen .play_btn:hover {
    background-color: #fff;
}

@keyframes eq {
    0% {
        height: 3px;
    }

    50% {
        height: 15px;
    }

    100% {
        height: 3px;
    }
}

.player .eq {
    display: flex;
    width: 20px;
    height: 15px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-end;
}

.player .eq__bar {
    width: 4px;
    background: #fff;
    filter: drop-shadow(0 0 5px #fff);
}

.player .eq__bar:nth-child(2) {
    animation: eq 1.2s ease-in-out infinite 0s;
}

.player .eq__bar:nth-child(4) {
    animation: eq 1.2s ease-in-out infinite .2s;
}

.player .eq__bar:nth-child(1) {
    animation: eq 1.2s ease-in-out infinite .4s;
}

.player .eq__bar:nth-child(3) {
    animation: eq 1.2s ease-in-out infinite .6s;
}

.bar,
.bar:after,
.bar:before {
    width: 15px;
    height: 3px;
}

.bar {
    position: relative;
    -webkit-transition: all 0ms 300ms;
    transition: all 0ms 300ms;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    background: #fff;
}

.bar.animate {
    background: rgba(0, 178, 250, 0);
}

.bar:before {
    position: absolute;
    bottom: 6px;
    left: 0;
    content: '';
    -webkit-transition: bottom 300ms 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms cubic-bezier(.23, 1, .32, 1);
    background: #fff;
}

.bar:after {
    position: absolute;
    top: 6px;
    left: 0;
    content: '';
    -webkit-transition: top 300ms 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms cubic-bezier(.23, 1, .32, 1);
    background: #fff;
}

.bar.animate:after {
    top: 0;
    -webkit-transition: top 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bar.animate:before {
    bottom: 0;
    -webkit-transition: bottom 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms cubic-bezier(.23, 1, .32, 1), transform 300ms 300ms cubic-bezier(.23, 1, .32, 1), -webkit-transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    ;
}

.spinner {
    margin: 0px auto;
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
}

.spinner>div {
    background-color: #fff;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/* ------------------------------------- */
