* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    max-width: 2560px;
    padding-left: calc(50% - 1280px);
    padding-right: calc(50% - 1280px);
}

.position {
    position: relative;
}

.center {
    padding-left: calc(50% - 720px);
    padding-right: calc(50% - 720px);
}

.header {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, 33.333333%);
    text-align: center;
    padding-top: 50px;
}

.nav_link {
    color: #ffffff;
    font-size: 30px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: color 0.3s;
    height: 70px;
}

.nav_link:hover {
    color: orchid;
    font-weight: bold;
}


/*
.nav_link:hover::before {
    content: '> ';
    color: rgb(112, 112, 218);
}

.nav_link:hover::after {
    content: ' <';
    color: rgb(112, 112, 218);
}
*/

.nav_link:active {
    color: green;
}

.first_plane {
    color: #ffffff;
    font-size: 50px;
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s;
    height: 65px;
    margin-top: 30px;
}

.first_plane:hover {
    color: orchid;
    font-weight: bold;
}

.first_plane:active {
    color: red;
}

.player_location {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.comment_pole {}

.opros {
    justify-content: center;
    text-align: center;
}

.item_href {
    display: flex;
    justify-content: center;
    align-items: center;
}

.like-container {
    display: flex;
    align-items: center;
}

.like-button {
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    margin-right: 8px;
    text: center;
}

.like-count {
    font-size: 24px;
}

body {
    background-color: #2d2d2d;
    color: #ffc266;
    font-family: 'Roboto', sans-serif;
}

#myProgress {
    width: 420px;
    background-color: #d9d9f2;
    cursor: pointer;
    border-radius: 10px;
}

#myBar {
    width: 0%;
    height: 5px;
    background-color: #ffc266;
    border-radius: 10px;
}

.logo {
    fill: red;
}

.btn-action {
    cursor: pointer;
    padding-top: 10px;
    width: 30px;
}

.btn-ctn,
.infos-ctn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.infos-ctn {
    padding-top: 20px;
}

.btn-ctn>div {
    padding: 5px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.infos-ctn>div {
    margin-bottom: 8px;
    color: #ffc266;
}

.first-btn {
    margin-left: 3px;
}

.duration {
    margin-left: 10px;
}

.title {
    margin-left: 10px;
    width: 210px;
    text-align: center;
}

.player-ctn {
    border-radius: 15px;
    width: 420px;
    padding: 10px;
    background-color: #373737;
    margin: auto;
    margin-top: 100px;
}

.playlist-track-ctn {
    display: flex;
    background-color: #464646;
    margin-top: 3px;
    border-radius: 5px;
    cursor: pointer;
}

.playlist-track-ctn:last-child {
    /*border: 1px solid #ffc266; */
}

.playlist-track-ctn>div {
    margin: 10px;
}

.playlist-info-track {
    width: 80%;
}

.playlist-info-track,
.playlist-duration {
    padding-top: 7px;
    padding-bottom: 7px;
    color: #e9cc95;
    font-size: 14px;
    pointer-events: none;
}

.playlist-ctn {
    padding-bottom: 20px;
}

.active-track {
    background: #4d4d4d;
    color: #ffc266 !important;
    font-weight: bold;
}

.active-track>.playlist-info-track,
.active-track>.playlist-duration,
.active-track>.playlist-btn-play {
    color: #ffc266 !important;
}

.playlist-btn-play {
    pointer-events: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

.fas {
    color: #ffc266;
    font-size: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');
html {
    box-sizing: border-box;
    --parent-height: 20em;
    --duration: 1s;
    --duration-text-wrap: 12s 1.5s cubic-bezier(0.82, 0.82, 1, 1.01);
    --cubic-header: var(--duration) cubic-bezier(0.71, 0.21, 0.3, 0.95);
    --cubic-slider: var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
    --cubic-play-list: .35s var(--duration) cubic-bezier(0, 0.85, 0.11, 1.64);
    --cubic-slider-context: cubic-bezier(1, -0.01, 1, 1.01);
}

html *,
html *::before,
html *::after {
    box-sizing: inherit;
    scrollbar-width: none;
}

body {
    margin: 0;
    height: 100vh;
    user-select: none;
    align-items: center;
    justify-content: center;
    background-color: #e5e7e9;
    font-family: 'Quicksand', sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: background-color var(--cubic-slider);
}

.img {
    width: 100%;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
}

.list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uppercase {
    text-transform: uppercase;
}

.player {
    width: 17.15em;
    display: flex;
    overflow: hidden;
    font-size: 1.22em;
    border-radius: 1.35em;
    flex-direction: column;
    background-color: white;
    height: var(--parent-height);
}

.player__header {
    z-index: 1;
    gap: 0 .4em;
    width: 100%;
    display: flex;
    height: 5.85em;
    flex-shrink: 0;
    position: relative;
    align-items: flex-start;
    border-radius: inherit;
    justify-content: flex-end;
    background-color: white;
    padding: .95em 0.6em 0 1.2em;
    box-shadow: 0 2px 6px 1px #0000001f;
    transition: height var(--cubic-header), box-shadow var(--duration), padding var(--duration) ease-in-out;
}

.player__header.open-header {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    box-shadow: unset;
}

.player__img {
    width: 3.22em;
    height: 3.22em;
    border-radius: 1.32em;
}

.player__img--absolute {
    top: 1.4em;
    left: 1.2em;
    position: absolute;
}

.slider {
    flex-shrink: 0;
    overflow: hidden;
    transition: width var(--cubic-header), height var(--cubic-header), top var(--cubic-header), left var(--cubic-header);
}

.slider.open-slider {
    top: 0;
    left: 0;
    width: 100%;
    height: 14.6em;
}

.slider__content {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform var(--cubic-slider);
}

.slider__img {
    filter: brightness(75%);
}

.slider__name,
.slider__title {
    overflow: hidden;
    white-space: nowrap;
}

.text-wrap {
    display: block;
    white-space: pre;
    width: fit-content;
    animation: text-wrap var(--duration-text-wrap) infinite;
}

@keyframes text-wrap {
    75% {
        transform: translate3d(-51.5%, 0, 0);
    }
    100% {
        transform: translate3d(-51.5%, 0, 0);
    }
}

.player__button {
    all: unset;
    z-index: 100;
    width: 2.5em;
    height: 2.5em;
    cursor: pointer;
}

.playlist {
    transform: scale(0);
    transition: transform calc(var(--duration) / 2);
}

.slider.open-slider .playlist {
    transform: scale(1);
    transition: transform var(--cubic-play-list);
}

.player__button--absolute--nw {
    top: 5.5%;
    left: 5.5%;
    position: absolute;
}

.player__button--absolute--center {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}

img[alt="pause-icon"] {
    display: none;
}

.player__controls {
    width: 77%;
    gap: .5em 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    will-change: contents;
    align-content: center;
    justify-content: center;
    transition: transform var(--cubic-header), width var(--cubic-header);
}

.player__controls.move {
    width: 88%;
    transform: translate3d(-1.1em, calc(var(--parent-height) - 153%), 0);
}

.player__context {
    margin: 0;
    width: 100%;
    display: flex;
    line-height: 1.8;
    flex-direction: column;
    justify-content: center;
    text-transform: capitalize;
}

.slider__context {
    width: 56.28%;
    cursor: pointer;
    text-align: center;
    padding-bottom: .2em;
    will-change: contents;
    transition: width var(--cubic-header);
    animation: calc(var(--duration) / 2) var(--cubic-slider-context);
}

@keyframes opacity {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
}

.player__controls.move .slider__context {
    width: 49.48%;
}

.player__title {
    font-size: .7em;
    font-weight: bold;
    color: #00000086;
}

.progres {
    width: 90%;
    height: .25em;
    cursor: pointer;
    border-radius: 1em;
    touch-action: none;
    background-color: #e5e7ea;
    transition: width var(--cubic-header);
}

.player__controls.move .progres {
    width: 98%;
}

.progres__filled {
    width: 0%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    border-radius: inherit;
    background-color: #78adfe;
}

.progres__filled::before {
    right: 0;
    width: .35em;
    content: " ";
    height: .35em;
    border-radius: 50%;
    position: absolute;
    background-color: #5781bd;
}

.player__playlist {
    height: 100%;
    overflow: auto;
    padding: 1.05em .9em 0 1.2em;
}

.player__playlist::-webkit-scrollbar {
    width: 0;
}

.player__song {
    /* gap: 0 .65em ; */
    display: flex;
    cursor: pointer;
    margin-bottom: .5em;
    padding-bottom: .7em;
    border-bottom: .1em solid #d8d8d859;
}

.player__song .player__context {
    line-height: 1.5;
    margin-left: .65em;
}

.player__song-name {
    font-size: .88em;
}

.player__song-time {
    font-size: .65em;
    font-weight: bold;
    color: #00000079;
    height: fit-content;
    align-self: flex-end;
}

.audio {
    display: none !important;
}

.start {
    align-items: normal;
}

.like-container {
    display: flex;
    align-items: center;
}

.like-button {
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    margin-right: 8px;
}

.like-count {
    font-size: 18px;
}

footer {
    min-width: 320px;
    display: grid;
    justify-content: center;
}

.listen_more {
    display: grid;
    grid-template-columns: 100vw;
    grid-template-rows: 40% 60%;
    padding-top: 30px;
}

.listen_more_heading {
    grid-area: 1/1/2/4;
    text-align: center;
    color: #ffffff;
    font-size: 40px;
    display: block;
    height: 50px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding-bottom: 30px;
    padding-top: 10px;
}

.listen_song {
    display: block;
    width: 68px;
    height: 30px;
    border: 2px solid purple;
    line-height: 25px;
    text-align: center;
    color: purple;
    font-size: 14px;
    transition: background-color 0.5s;
    border-radius: 5px;
}

.listen_singer {
    display: block;
    width: 90px;
    height: 30px;
    border: 2px solid purple;
    line-height: 25px;
    text-align: center;
    color: purple;
    font-size: 14px;
    transition: background-color 0.5s;
    border-radius: 5px;
}

.listen_musician {
    display: block;
    width: 90px;
    height: 30px;
    border: 2px solid purple;
    line-height: 25px;
    text-align: center;
    color: purple;
    font-size: 14px;
    transition: background-color 0.5s;
    border-radius: 5px;
}

.listen_song:hover {
    background-color: purple;
    color: white;
}

.listen_singer:hover {
    background-color: purple;
    color: white;
}

.listen_musician:hover {
    background-color: purple;
    color: white;
}

@media(max-width:425px) and (min-width: 320px) {
    body {
        width: 100vw;
    }
    .center {
        padding-left: calc(50% - 160px);
        padding-right: calc(50% - 160px);
    }
    .comment_pole {
        width: 300px;
    }
    .player__context {
        width: 50%;
    }
    .progres {
        width: 80%;
    }
}