html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

body {
    margin: 0;
    background-color: #dff2fd;
}

h1,
h2,
h3,
p,
ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: unset;
}

button {
    border: none;
    background-color: transparent;
}

button:active {
    transform: translate(2px, 2px);
}

.main {
    width: 100%;
    height: 100vh;
}

.nav {
    width: 100%;
    height: 80px;
    position: relative;
}

.update {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 40px;
    width: 40px;
    font-size: 50px;
    line-height: 35px;
    cursor: pointer;
}


.burger {
    position: absolute;
    top: 15px;
    right: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}

.line {
    height: 4px;
    width: 90%;
    border-radius: 2px;
    background-color: #000;
}

.main__body {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.cover {
    width: 300px;
    height: 300px;
}

.cover>img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px #000000;
}

.title {
    margin-top: 15px;
    height: 100px;
    font-family: monospace;
    text-align: center;
}

.loader-animation {
    height: 30px;
    width: 80px;
    background-color: greenyellow;
    animation: loadbar 1.5s ease-in-out 1ms infinite;
    animation-
}

@keyframes loadbar {
    0% {
        margin-left: -40px;
    }



    50% {
        margin-left: calc(100% - 40px);
    }



    100% {
        margin-left: -40px;
    }

}

.faorite {
    font-size: 28px;
}

.controls {
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.controls>button {
    font-size: 28px;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
}

/* .controls>button::before {
    font-size: 38px;
}

#play::before {
    content: '\25B6';
}

#pause::before {
    content: '\23F8';
}

#prev::before {
    content: '\23EE';
}

#next::before {
    content: '\23ED';
} */

.all__stations {
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    height: 100vh;
    background-color: #e5e5e5;
    overflow: scroll;
    list-style: none;
}

.all__stations_head {
    position: sticky;
    top: 0;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #e5e5e5;
    cursor: pointer;
}

.active {
    background-color: #4e7af5;
    border-radius: 0 0 8px 8px;
}

.all {
    height: 100%;
    width: 50%;
    text-align: center;
    padding-top: 10px;
}

.favorite {
    height: 100%;
    width: 50%;
    text-align: center;
    padding-top: 10px;
}


.thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    margin-right: 10px;
}

.all__stations-item {
    margin: 10px;
    display: flex;
    cursor: pointer;
}