*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #071321;
}
h3:hover{
    color: #314865;
    cursor: pointer;
}
/* extra styles start*/
.fixed{
    width: 1300px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 11;
}
.visible{
    visibility: visible;
}

.liked{
    transition-delay: 0.3s;
    color: #FC5D5D;
    -webkit-text-stroke: none;
}

/* extra styles end */

.container{
    width: 1300px;
    margin: 0 auto;
    background-color: #dfdcdc;
    margin-top: 150px;
}

nav{
    width: 100%;
    height: 70px;
    padding: 17px 30px;
    display: flex;
    justify-content: space-between;
    font-family: 'Roboto', sans-serif;
    background-color: #456690;
}

.logo{
    width: 18%;
    height: 100%;
    cursor: pointer;
}

.logo img{
    width: 100%;
    height: 100%;
}

.searchMenu{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 3px;
}

.searchMenu input{
    width: 100%;
    padding: 0 10px;
    border: none;
    outline: none;
}
.searchMenu input::placeholder{
    color: #000;
}
.searchMenu input:focus::placeholder{
    color: gray;
}
.searchMenu .searchBtn{
    width: 40px;
    height: 100%;
    background-color: #FFB55A;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    color: #505050;
}

.SignIn{
    width: 15%;
    height: 100%; 
    background-color: #F5F5F5;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.SignIn:hover{
    border: 2px solid #ffde00;
}

.MainBlock{
    width: 100%;
    height: auto;
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-columns: 65% 35%;
    padding: 10px 0 0 0;
}

.BlockBody, .MusicCotegories{
    background-color: #fff;
}

.BlockBody{
    margin-right: 5px;
    /* height: 100%; */
    padding: 25px;
}
.MusicCotegories{
    margin-left: 5px;
    padding: 25px;
}
.MusicCotegories h3{
    margin-top: 15px;
}
.singerBlock{
    width: 100%;
    height: 250px;
    padding: 25px;
    border-bottom: 2px solid #dfdcdc;
}

.titleBlock{
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.titleBlock a{
    text-decoration: none;
    color: #456690;
}

/* .singers{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    flex-wrap: wrap;
    overflow: hidden;
} */
.singers{
    width: 100%;
    max-height: 170px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.singer{
    height: 170px;
    max-width: 130px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.singer h4{
    font-size: 14px;
    line-height: 40px;
}

.singerImg{
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid transparent;
    position: relative;
}

.singerImg img{
    width: 100%;
    height: 100%;
}

.singerMusic{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    color: #ffde00;
    background-color: #456690;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 5%;
    left: 5%;
    visibility: hidden;
}

.singerImg:hover{
    border: 2px solid #ffde00;
}
.singerImg:hover .singerMusic{
    visibility: visible;
}

.MusicsList{
    padding: 25px 30px;
    border-bottom: 2px solid #dfdcdc;
}

.MusicsList > .titleBlock{
    margin-bottom: 15px;
}

.music{
    width: 100%;
    height: 50px;
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
}

.PlayPart{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.playOrPause, .download{
    width: 40px;
    height: 40px;
    border: 2px solid #a5a5a5;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #456690;
    margin-right: 5%;
    cursor: pointer;
}

.playOrPause:hover, .download:hover{
    border: 2px solid #456690;
}

.MusicSettings{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.MusicSettings span{
    font-size: 14px;
}
.like, .dislike, .addPlaylist, .audioDuration{
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #999;
}

.like i{
    -webkit-text-stroke: 2px #FC5D5D;
    font-size: 18px;
    color: transparent;
}
.dislike i{
    -webkit-text-stroke: 2px #999999;
    font-size: 18px;
    color: transparent;
}
.like i:hover, .dislike i:hover{
    -webkit-text-stroke: 2px #FC5D5D;
    cursor: pointer;
}

.addPlaylist i{
    font-size: 21px;
}
.addPlaylist i:hover{
    color: #3E6594;
    cursor: pointer;
}

.download{
    border-color: transparent;
    display: none;
}
.dislike, .like{
    opacity: 0;
}

.music:hover .dislike{
    opacity: 1;
}
.music:hover .like{
    opacity: 1;
}

.music:hover .audioDuration span{
    display: none;
}
.music:hover .download{
    display: flex;
}

.download i{
    font-weight: 900;
    font-size: 16px;
}
.MusicName h4, span{
    font-size: 15px;
}


footer{
    padding: 25px;
}
.socialNetworks{
    margin-top: 25px;
    display: flex;
}
.icon i{
    font-family: FontAwesome;
}

.icon{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    color: #fff;
}

.vk{
    background-color: #0077ff;/*#278CFF*/
}
.vk:hover{
    background-color: #278CFF;
}

.odnoklasnik{
    background-color: #ff5e00;/*#EE884E*/
}
.odnoklasnik:hover{
    background-color: #EE884E;
}
.twitter{
    background-color: #00bbff;/*#27B9F0*/
}
.twitter:hover{
    background-color: #27B9F0;
}
.telegram i{
    font-size: 25px;
    color: #3b9de9;/*#7CB6E1*/
}
.telegram i:hover{
    color: #7CB6E1;
}

footer > p{
    font-size: 12px;
    margin-top: 15%;
}
.list{
    width: 100%;
}

.list li{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
}
.list li .icon{
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 15px;
}
.new{
    background-color: #86CBF6;
}
.collections{
    background-color: #FF7D8D;
}
.genres{
    background-color: #F7CD40;
}
.performers{
    background-color: #FFB55A;
}
.clips{
    background-color: #A2C57E;
}
.popular{
    background-color: #78CBC4;
}
.retro{
    background-color: #FF7E7E;
}
.AboutSummer{
    background-color: #6FAEDB;
}
.mood{
    background-color: #86CBF6;
}
.beautiful{
    background-color: #FF967B;
}
.cool{
    background-color: #A5AFD3;
}
.theBest{
    background-color: #95B8C5;
}
.MusicSelection{
    background-color: #DB9B86;
}
.children{
    background-color: #7BC993;
}

.circle{
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
}
.circle i{
    color: #db9b86;
}

.MusicGenres{
    width: 100%;
}
.GenresBlock{
    width: 100%;
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}
.genre{
    height: 35px;
    background-color: #E5EBF3;
    border-radius: 1px;
    border-bottom: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-weight: 300;
    font-size: 14px;
    cursor: pointer;
}
.genre:hover{
    background-color: #314865;
    color: #fff;
}

.newSongs{
    width: 100%;
}
.newSongs li{
    font-size: 14px;
    list-style: none;
    margin-top: 10px;
}
.newSongs li:hover{
    color: #314865;
    cursor: pointer;
}
.newSongs li:nth-of-type(1){
    margin-top: 20px;
}
.EndFooter{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.EndFooter span{
    pointer-events: none;
    font-size: 12px;
}
.EndFooter a{
    text-decoration: none;
    color: #314865;
}
.MusicPlayer{
    position: relative;
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.MusicDuration{
    position: fixed;
    width: 100%;
    height: 5px;
    background-color: #E5E5E5;
    transition: 0.2s;
    position: absolute;
    bottom: 100%;
}
.MusicDuration:hover{
    height: 15px;
}
.MusicPlayer:hover  .MusicDuration{
    height: 15px;
}
.MusicPlayerSettings{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.leftSide{
    height: 100%;
    width: 22%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.rightSide{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.pauseAndplay{
    font-size: 25px;
    cursor: pointer;
    color: #acaaaa;
}
.menu{
    font-size: 22px;
}
.menu, .repeat, .shuffle, .prevBtn, .nextBtn{
    color: #acaaaa;
    cursor: pointer;
}
.voice{
    position: relative;
    cursor: pointer;
}
.voice:hover .voiceContent{
    visibility: visible;
}
.voiceContent{
    width: 40px;
    height: 240px;
    display: flex;
    align-items: start;
    z-index: 99;
    position: absolute;
    bottom: 100%;
    left: -50%;
    right: 50%;
    visibility: hidden;
}
.voiceController{
    width: 40px;
    height: 200px;
    display: flex;
    flex-direction: column;
    background-color: #3e6594;
}
.extraSettings{
    width: 100%;
    height: 40px;
    border-bottom:1px solid white;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.volumeContainer{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.square{
    height: 10px;
    width: 10px;
    background-color: #3e6594;
    transform: rotate(45deg);
    position: absolute;
    bottom: -5px;
}
.volume{
    width: 7px;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #7398c5;
}


.musicDurationContainer{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}
.moments{
    font-size: 10px;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 5px;
    visibility: hidden;
}
.fullDuration{
    font-size: 10px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 5px;
    visibility: hidden;
}
.durationProgress{
    height: 100%;
    width: 0%;
    background-color: #FFDC65;
}

.MusicPlayer:hover .MusicDuration .musicDurationContainer .moments{
    visibility: visible;
}
.MusicPlayer:hover .MusicDuration .musicDurationContainer .fullDuration{
    visibility: visible;
}