body {
    padding: 0;
    margin: 0;
    background-color: #efe3da;
    background-image: linear-gradient(120deg,#efe3da,#beebed,#f4bcf9);
}

.App {
    display: flex;
}

h2 {
    font-family: 'Poppins', sans-serif;

}

.slider_container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.volume_slider{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 5px;
    background: #56e383;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.volume_slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #1fa148;
    cursor: pointer;
    border-radius: 100%;
}

.volume_slider:hover{
    opacity: 1.0;
}

.volume_slider{
    width: 60%;

}

i.volumeDown,
i.volumeUp{
    padding: 10px;
}

.Library {
    display: flex;
    align-items: center;
    position: relative;    
    left: -18%;
    transition: 1s all;
    width: 20%;
    height: 100vh;
    border-radius: 0 20px 20px 0;
    box-shadow: 5px 0 10px #839B96;
}
.list-musics {
    margin: 0;
    overflow: auto;
    padding: 0;
    height: 100vh;
    width: 90%;
    font-family: 'Poppins', sans-serif;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: white;
}

.list-musics h2 {
    padding-left: 10px;
}

.pointer {
    transition: 1s all;
}

.pointer:hover {
    cursor: pointer;
}

.active {
    transform: translateX(90%);
    transition: 1s all;
}

.rotate {
    transform: rotate(180deg);
    transition: 1s all;
}

.music {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    width: 95%;
    height: 12%;
}

.music img {
    display: block;
    width: 50px;
    height: 50px;
}

.music:hover {
    background-color: #222123;
    cursor: pointer;
}

.music:hover p {
    color: white;
}

.description p {
    padding: 0;
    margin: 0;
    color: black;
}

.description {
    margin-left: 10px;
}

.name {
    font-size: 1.2em;
}

.perfomers {
    font-size: 0.7em;
}



/* css для элемента Player*/
.Player {
    width: 80%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: -10%;
    transition: 1s all;
}

.shift {
    margin-left: 0;
    transition: 1s all;
}

.img-music {
    border-radius: 50%;
    width: 300px;
    height: 300px;
}

.psd-fm {
    width: 150px;
    height: 150px;
    margin-top: 0px;
    margin-bottom: 20%;
}

.owner {
    position: absolute;
    right: 0px;
    padding-right: 30px;
    font-family:'Poppins', sans-serif;
    font-weight: bold;

}

.mj {
    position: absolute;
    right: 40px;
    padding-right: 30px;
    padding-top: 30px;
    width: 80px;
    height: 80px;

}

a {
  color: #24c5ed;
}

.rotate-img {
    animation-name: rotateImg;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.audio-description {
    margin: 20px 0 20px 0;
}

.audio-description p {
    text-align: center;
    color: black;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 150%;
}

.audio-name {
    font-size: 1.8em;
}

.audio-perfomers {
    font-size: 1em;
}

.twitter{
    width: 25px;
    height: 20px;
    float: left;
    padding-right: 10px;
    padding-top: 10px;
    margin-left: -40px;

}

.twtLink{
    text-decoration: none;
}

.audio-perfomers:hover{
    color: #1DA1F2;
   
}


.audio-player {
    width: 60%;
    height: 12vh;
    box-shadow: 0 0 10px #839B96;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.panel {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bar {
    width: 80%;
    height: 1vh;
    background-color: #838B96;
    border-radius: 10px;
    margin-top: 10px;
    position:relative;
}

.progress {
    height: 1vh;
    width: 0%;
    background-color: #56e383;
    border-radius: 10px;
}

.seek_slider{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 1vh;
    border-radius: 10px;
    background: yellow;
    -webkit-transition: .2s;
    transition: opacity .2s;
    background: transparent;
    position:absolute;
}
.seek_slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid black;
    cursor: pointer;
    border-radius: 100%;
    opacity: 1.0;
}

.seek_slider:hover{
    opacity: 1.0;
}
.seek_slider{
    width: 100%;
}

.btn-play:hover {
    cursor: pointer;
}

.btn-repeat:hover {
    cursor: pointer;
}

.btn-back:hover {
    cursor: pointer;
}

.btn-next:hover {
    cursor: pointer;
}

.btn-shuffle:hover {
    cursor: pointer;
}

.volumeDown:hover {
    cursor: pointer;
}

.focus {
    background-color: #222123;

}

.focus p{
    color: white;
    
}
@keyframes rotateImg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

