* {
    margin: 0;
    box-sizing: border-box;
}

@media (max-width: 800px) {
    * {
        user-select: none;
    }
}

.loading {
    opacity: 0.7;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

header, main, footer {
    padding: 0 20px;
}

@media (max-width: 800px) {
    header, main, footer {
        padding: 0 15px;
    }
}

.logo {
    color: #3F67F8;
    font-size: 45px;
    font-weight: bold;
    padding-right: 40px;
    margin-right: auto;
}


.logo > a {
    text-decoration: none;
}

.logo > a:visited {
    color: #3F67F8;
}

header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
    background-color: #fff;
    z-index: 1;
}

.search-box {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #edeff3;
    border-radius: 8px;
    max-width: 613px;
}

.search-box > span {
    display: inline-block;
    width: 50px;
    height: 48px;
}

.search-icon {
    color: #3F67F8;
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border: 3px solid;
    border-radius: 100%;
    margin-left: -4px;
    margin-top: -4px
}

.search-icon::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 3px;
    width: 3px;
    height: 8px;
    background: currentColor;
    transform: rotate(-45deg);
    top: 9px;
    left: 12px
}

.search-box > input {
    box-shadow: none;
    outline: none;
    border: none;
    height: 50px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    width: 100%;
    font-size: 16px;
    padding-left: 11px;
}

.search-box > button {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    border: none;
}

.search-box > button:hover {
    cursor: pointer;
    background-color: #edeff3;
}

.top-menu, .auth {
    font-size: 17px;
    font-weight: bold;
}

.top-menu:hover, .auth > span:hover {
    color: #3f67f8;
}
.top-menu > a:hover {
    cursor: pointer;
}

.top-menu {
    padding-left: 30px;
    padding-right: 22px;
}
.top-menu.session {
    padding-left: 30px;
    padding-right: 100px;
}


.auth > span {
cursor: pointer;
}

.auth > span:first-child {
    padding: 17px;
}

.auth > span:nth-child(2) {
    color: #325efb;
    background-color: #eef2ff;
    padding: 17px;
    border-radius: 8px;
}

.auth > span:nth-child(2):hover {
    background-color: #dbe4ff;
}


nav {
    background-color: #2d3138;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 800px) {
    header {
        position: fixed;
        padding-bottom: 5px;
        border-bottom: 1px solid #edeff3;
    }

    nav {
        margin-top: 66px;
    }
}

nav > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav > ul > li {
    padding: 15px;

}

nav > ul > li > a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

nav > ul > li > a:hover {
    color: #3f67f8;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    flex: 1 0 auto;
}

main > section > h1 {
    text-align: center;
    padding-top: 55px;
    font-size: 64px;
    color: #2d3138;
}
h1.left {
    text-align: unset;
}

@media (max-width: 800px) {
    main > section > h1 {
        text-align: center;
        padding-top: 20px;
        font-size: 19px;
        color: #2d3138;
    }
}

main > h2 {
    padding-top: 20px;
    font-size: 25px;
    color: #2d3138;
}

main > p {
    padding-left: 5px;
}

main > h3 {
    padding-top: 20px;
}

@media (max-width: 800px) {
    main > section > h1 {
        font-size: 19px;
    }
}

main > section:first-child > p {
    padding-top: 25px;
    color: #6b7785;
    font-size: 18px;
    font-weight: 400;
    margin-left: auto;
    text-align: center;
}

.search-main {
    display: flex;
    flex-direction: row;
    padding-top: 35px;
    width: 100%;
}

@media (max-width: 800px) {
    .search-main {
        padding-top: 20px;
    }
}

.search-box-main {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 2px solid #325efb;
    border-radius: 8px;
}

.search-box-main > input {
    box-shadow: none;
    outline: none;
    border: none;
    height: 50px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    font-size: 16px;
    padding-left: 11px;
    width: 100%;
}

.btn-search {
    background-color: #3f67f8;
    border-radius: 8px;
    height: 60px;
    width: 145px;
    margin-left: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    cursor: pointer;
}

.search-box-main > i {
    margin-left: 15px;
}

*::placeholder {
    color: #bfbfbf;
}

section > h2 {
    margin-top: 30px;
    font-size: 40px;
    color: rgba(0, 0, 0, .85);
}

@media (max-width: 800px) {
    section > h2 {
        margin-top: 20px;
        font-size: 20px;
    }
}

.tracks {
    margin-top: 30px;
    width: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

@media (max-width: 800px) {
    .tracks {
        margin-top: 20px;
    }
    h2 {
        font-size: 20px;
    }
}

.tracks > a {
    text-decoration: none;
}

.track {
    width: 100%;
    height: 125px;
    display: flex;
    flex-direction: row;
    box-shadow: 0 4px 24px rgba(48, 62, 75, .06);
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 305px;
    position: relative;
}

@media (min-width: 800px) {
    .track {
        min-width: 410px;
    }
}

.track:hover {
    background-color: #eef2ff;
    transition: all .2s linear;
    cursor: pointer;
}

.track > img {
    border-radius: 8px;
}

.lyrics-name {
    text-align: left;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 5px;
}

@media (max-width: 800px){
    .lyrics-name {
        padding: 5px 10px;
    }
}

.lyrics-name > .artist {
    color: #616873;
    font-size: 17px;
    font-weight: 500;
    padding: 5px 0;
}

.lyrics-name > .name {
    color: #2d3138;
    font-size: 19px;
    font-weight: bold;
}



footer {
    margin-top: 35px;
    background-color: #202124;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.footer-links {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column > a, .footer-column > span > a, .footer-column > span {
    color: #9b9b9c;
    text-decoration: none;
    font-size: 17px;
    margin-bottom: 16px;
}

.footer-column > a:hover, .footer-column > span > a:hover {
    color: #fff;
    transition: all .1s linear;
}


.popup-overlay {
    display: none;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.46);
    position: fixed;
    justify-content: center;
    z-index: 2;
}

.modal-window {
    color: rgba(0, 0, 0, .85);
    font-size: 14px;
    line-height: 1.5715;
    list-style: none;
    position: fixed;
    top: 100px;
    margin: 0 auto;
    width: auto;

    max-width: calc(100vw - 32px);
    border-radius: 8px;
    display: flex;
    background-color: #fff;
    flex-direction: column;
}


.modal-title-close {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 56px;
}


.modal-title {
    display: block;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 2.8;
    padding-left: 30px;
}

.modal-window > form {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;

}

.modal-close {
    display: block;
    width: 56px;
    height: 56px;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    color: #999;
}

.modal-close:hover {
    cursor: pointer;
    transition: all .1s linear;
    color: rgba(0, 0, 0, .75);
}

.modal-close > span {
    color: rgba(0, 0, 0, .45);
    text-align: center;
    font-weight: bold;
    font-size: 35px;
}

#email, #password {
    height: 40px;
    width: 100%;
    padding: 4px 11px;
    border-radius: 4px;
    border: 1px solid #edeff3;
}

.blue-btn.login {
    background-color: #3f67f8;
    height: 40px;
    border-radius: 8px;
    text-align: center;
    line-height: 2.4;
    font-size: 17px;
    cursor: pointer;
}

.blue-btn.login:hover {
    background-color: #2f5bf9;
}

.blue-btn.login > span {
    color: #fff;
}

.alert {
    min-height: 24px;
}

.login-with {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0;
}

.login-with > span {
    font-size: 17px;
    height: 40px;
    line-height: 2.2;
}

.login-with > span:nth-child(2) {
    border: 1px solid #edeff3;
    border-radius: 5px;
    cursor: pointer;
}

.forgot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6b7785;
    cursor: pointer;
    font-size: 15px;
    padding-top: 20px;
}

.forgot > span {
    margin-bottom: 5px;
}

.forgot > span:hover {
    text-decoration: underline;
    color: #3f67f8;
    transition: all .1s linear;
}

.term-accept {
    padding-bottom: 10px;
}

.term-accept > a {
    padding-left: 5px;
}

.social {
    padding-bottom: 20px;
}

.social > a {
    text-decoration: none;
    padding-right: 20px;
}

.social > a > span > svg {
    width: 25px;
    height: 25px;
}

@media (min-width: 801px) {
    .mobile, .mobile-menu, .btn-search-mobile {
        display: none;
    }

    .modal-window {
        min-width: 400px;
    }
}

@media (max-width: 800px) {
    .mobile {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    .top-mobile-search {
        width: 32px;
        height: 32px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin-right: 10px;
        border: 1px solid #edeff3;
        border-radius: 8px;
    }

    .hamburger-menu {
        width: 32px;
        height: 32px;
        background-color: #eef2ff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        cursor: pointer;
        border-radius: 8px;
    }

    .hamburger-menu span {
        margin-top: 3px;
        margin-bottom: 1px;
        display: block;
        height: 2px;
        width: 15px;
        background: #3f67f8;
    }

    .mobile-search-box {
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 1px solid #edeff3;
        border-radius: 8px;
        max-width: 100%;
        margin-right: 10px;
        width: 100%;
    }


    .mobile-search-box > input {
        box-shadow: none;
        outline: none;
        border: none;
        height: 32px;
        border-bottom-left-radius: 8px;
        border-top-left-radius: 8px;
        width: 100%;
        font-size: 16px;
        padding-left: 11px;
    }

    .mobile-search-box > span {
        display: flex;
        width: 32px;
        height: 32px;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        border-bottom-right-radius: 8px;
        border-top-right-radius: 8px;
        border: none;
        cursor: pointer;
    }

    .mobile-menu {
        border-top: 1px solid #edeff3;
        position: absolute;
        width: 100%;
        flex-direction: column;
        background-color: #fff;
        margin-top: 295px;
    }
    .mobile-menu.session {
        border-top: 1px solid #edeff3;
        position: absolute;
        width: 100%;
        flex-direction: column;
        background-color: #fff;
        margin-top: 244px;
        border-bottom: 1px solid #edeff3;
    }

    .search-box, .top-menu, .auth, .mobile-search-box, .mobile-menu, .search-main > .btn-search, .search-box-main > i:first-child {
        display: none;
    }

    .mobile-menu > a {
        font-size: 26px;
        padding-left: 30px;
        color: #3f67f8;
        text-decoration: none;
        margin-bottom: 10px;

    }

    .mobile-menu > a:first-child {
        padding-top: 10px;
    }

    .mobile-auth {
        display: flex;
        border-top: 1px solid #edeff3;
        border-bottom: 1px solid #edeff3;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        text-align: center;
        padding: 10px 0;
    }

    .mobile-auth > span {
        line-height: 1.5;
        font-size: 24px;
        box-shadow: 0 2px 0 rgba(0, 0, 0, .015);
        cursor: pointer;
        color: #3f67f8;
        height: 45px;
        padding: 4px 15px;
        background-color: #eef2ff;
        border-radius: 8px;
        margin: 5px 10px;
    }

    .mobile-auth > span:hover {
        background-color: #dbe4ff;
    }

    .btn-search-mobile {
        background-color: #2f5bf9;
        height: 54px;
        width: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .btn-search-mobile > i {
        color: #fff;
    }
}

.alert {
    font-size: 15px;
}

.account {
    height: 48px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #3f67f8;
    border: 1px solid #edeff3;
    border-radius: 8px;
    padding: 14px !important;
    transition: all .1s linear;
}

.account-dropdown {
    display: none;
    position: absolute;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .12), 0 6px 16px 0 rgba(0, 0, 0, .08), 0 9px 28px 8px rgba(0, 0, 0, .05);
}

.account-dropdown > a {
    color: rgba(0, 0, 0, .85);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    transition: all .3s;
    border: 1px solid #edeff3;
}

.account-dropdown > a:hover {
    background-color: #edeff3;
}

.account-dropdown > span > a {
    color: rgba(0, 0, 0, .85);
    text-decoration: none;
}

.btn-box {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    padding-top: 10px;
}

.btn-box > span {
    padding-top: 12px;
    padding-right: 20px;
    cursor: pointer;
    color: #6b7785;
    font-weight: 600;
}

.red-btn {
    cursor: pointer;
    height: 40px;
    width: 125px;
    border-radius: 8px;
    background-color: #d0312d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-btn:hover {
    background-color: #b90e0a;
}

form > p {
    font-size: 14px;
    color: #6b7785;
    font-weight: 600;
    margin-top: -20px;
    margin-bottom: 10px;
}

#notifications {
    position: fixed;
    right: 0;
    top: 24px;
    bottom: auto;
    padding-right: 20px;
    z-index: 3;
}

.notification {
    position: relative;
    min-width: 320px;
    background-color: #fff;
    width: 384px;
    max-width: calc(100vw - 48px);
    margin-bottom: 16px;
    margin-left: auto;
    padding: 10px 24px;
    overflow: hidden;
    line-height: 1.5715;
    word-wrap: break-word;
    border-radius: 2px;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .12), 0 6px 16px 0 rgba(0, 0, 0, .08), 0 9px 28px 8px rgba(0, 0, 0, .05);
}

.notification-icon {
    padding-right: 20px;
    padding-top: 5px;
    font-size: 22px;
    color: #52c41a;
}

.notification-box {
    display: flex;
    flex-direction: row;
}

.notification-box > span:nth-child(2) {
    padding-top: 7px;
    font-size: 17px;
}

.notification-box > span:nth-child(3) {
    cursor: pointer;
    margin-left: auto;
    padding-top: 10px;
    color: rgba(0, 0, 0, .45);
}

.artist-block {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-content: center;
    position: relative;
}

@media (max-width: 800px) {
    .artist-block {
        padding-top: 0;
    }
}

.song-block {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-content: center;
}
.song-block > .track{
    cursor: unset;
}
.song-block > .track:hover{
    cursor: unset;
    background-color: #fff;
}
.song-block > .track > img{
    cursor: pointer;
}

.artist-img, .song-img {
    height: 250px;
    width: 100%;
    margin: 20px 0;
    max-width: 250px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.artist-info {
    padding: 20px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.song-info {
    padding: 20px 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.real-name {
    color: #6b7785;
}

@media (max-width: 800px) {
    .artist-img, .song-img {
        height: 150px;
        width: 100%;
        margin: 20px;
        max-width: 150px;
        border-radius: 8px;
        background-repeat: no-repeat;
        background-size: 100%;
        align-self: center;
    }

    .artist-block, .song-block {
        flex-direction: column;
    }

    .artist-img, .song-img {
        margin: 5px 0;
    }

    .artist-info, .song-info {
        padding: 5px 0;
    }

    .song-info > h1 {
        font-size: 25px;
    }

    .real-name {
        color: #6b7785;
        margin-top: 0;
    }
}


.artist-info > h1, .song-info > h1 {
    padding-bottom: 5px;
}


.bio {
    padding-top: 10px;
    font-size: 17px;
    color: #616873;
    white-space: pre-wrap;
    font-family: sans-serif;
    line-height: 23px;

}


.artist-social {
    padding-top: 25px;
}

.artist-social > a {
    text-decoration: none;
    padding-right: 20px;
}

.artist-social > a > span > svg {
    width: 25px;
    height: 25px;
}

.bottom-info {
    margin-top: auto;
    display: flex;
}

@media (max-width: 800px) {
    .bottom-info {
        padding-top: 10px;
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
    }

    .bottom-info > div {
        display: flex;
        flex-direction: column;
        white-space: nowrap;
        text-overflow: ellipsis;
        padding-right: 20px;

    }

    .artist-label, .song-label, .song-genre, .song-album, .song-duration {
        padding-top: 10px;
    }
}

.artist-genre, .song-genre, .release-date, .song-album, .song-explicit, .song-duration, .album-explicit {
    padding-right: 10px;
}

.artist-genre > span, .artist-label > span, .song-genre > span, .song-label > span, .release-date > span, .song-duration > span, .song-album > span, .song-explicit > span {
    color: #6b7785;
    font-weight: 400;
}

.artist-genre, .artist-label, .song-genre, .song-label, .release-date, .song-duration, .song-album, .song-explicit {
    color: #6b7785;
    font-weight: 600;
}

.artist-songs {
    padding: 20px 0;
}

@media (max-width: 800px) {
    .artist-songs {
        padding: 15px 0;
    }

}

.song-tags {
    padding-top: 20px;
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
}

.song-tag {
    width: 190px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(48, 62, 75, .12);
    text-transform: capitalize;
}


.tab-container {
    margin-top: 20px;
    display: flex;
    width: 100%;
}

@media (min-width: 800px) {
    .tab-container:hover {
        cursor: pointer
    }
}

.tab-container .tab {
    display: flex;
    justify-content: center;
    flex: 1;
    height: 40px;
    position: relative;

}

.tab-container .tab .bar {
    flex: 1;
    width: 100%;
    height: 5px;
    background-color: #f4f4f4;
    border-radius: 2.5px;
    position: absolute;
    bottom: 0
}

.tab-container .selected .bar {
    background-color: #08f !important
}

.tab-container .tab .header {
    font-size: 16px;
    font-weight: 900;
    color: #6d6d6d
}

.tab-container .selected .header {
    color: #3F67F8 !important
}

.lyrics {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #616873;
    display: inline-block;
    word-wrap: break-word;
    white-space: pre-wrap;
    line-height: 27px;
    padding-top: 10px;
}

@media (max-width: 800px) {
    .lyrics {
        font-weight: 400;
        font-size: 17px;
        color: #616873;
        display: inline-block;
        word-wrap: break-word;
        white-space: pre-wrap;
        padding-top: 10px;
        line-height: 25px;
    }
}



.no-wrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadcrumb {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    padding-top: 20px;
    overflow-x: auto;
}

@media (max-width: 800px) {
    .breadcrumb {
        padding-bottom: 10px;
    }
}

.breadcrumb > li > a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

ul.breadcrumb li + li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

.page-loaded {
    padding-top: 20px;
    color: #fff;
}

.wide-x {
    padding-right: 20px;
}

.wide-x > a {
    text-decoration: none;
}

.search-artists-box, .search-album-box {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

.search-album-box {
    padding-top: 20px;
    padding-bottom: 10px;
}

.artist-box, .album-box {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.album-box {
    border-radius: 5px;

    box-shadow: 0 0 10px rgba(48, 62, 75, .06);
    margin: 0 10px;
}

.album-box > a > img {
    width: 140px;
    height: 140px;
    border-radius: 5px;
}

.album-box:hover {
    cursor: pointer;
    background-color: #eef2ff;
    transition: all .1s linear;
}

.album-box > a {
    text-decoration: none;
    color: #000;
}

.album-box > a > span {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.artist-box > a > img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
}

.artist-box > a > span {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.artist-box > a {
    text-decoration: none;
}

.artist-box > a:hover {
    text-decoration: underline;
}

.albums {
    height: 325px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding-top: 20px;
}

.artist-albums {
    padding-top: 10px;
}

.albums > a, #similar-artists > a {
    text-decoration: none;
}

.artist-album-box:hover, .similar-artist-box:hover {
    background-color: #eef2ff;
    transition: all .2s linear;
    cursor: pointer;
}

.artist-album-box, .similar-artist-box {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(48, 62, 75, .06);
    margin: 0 5px;
}

.album-name, .similar-artist-name {
    color: #2d3138;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    max-width: 200px;
    margin: 0 20px;
}

.album-image {
    padding: 20px;
    display: flex;
    justify-content: center;

}

.album-image > img {
    border-radius: 5px;
    width: 200px;
    height: 200px;
}

.similar-artists {
    padding-top: 20px;
}

#similar-artists, .artists-recently-added {
    height: 325px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding-top: 20px;
    overflow-y: hidden;
}

.similar-artist-image {
    padding: 20px;
    display: flex;
    justify-content: center;

}

.similar-artist-image > img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.social > a > span > svg:hover {
    fill: #fff;
    transition: all .1s linear;
}

.g-recaptcha {
    min-height: 78px;
}

[data-class="center"]{
    display: flex;
    align-self: center;
}

#comment {
    padding-top: 8px;
    color: #444;
    font-size: 16px;
    line-height: 22px;
    width: 100%;
    height: 150px;
    border: 1px solid #BBB;
    padding-left: 10px;
}

#comment:focus-visible {
    border: 1px solid #BBB;
}

#comment:read-write:focus {
    outline: none;
}

#comment:hover {
    cursor: text
}

#comment.placeholder {
    color: #444;
    font-size: 16px
}

#name::placeholder {
    font-size: 16px;
    color: #100f0f;
    line-height: 35px
}

#comment > a, .comment > a {
    color: #08C
}

#comment {
    margin: 10px 0;
    overflow: auto;
    resize: vertical
}

.comment-panel {
    position: absolute;
    display: flex;
    margin-top: -10px;
    align-self: end;
}

.smiles {
    padding-left: 50px;
    padding-top: 10px;
}

@media (max-width: 800px) {
    .smiles {
        padding-left: 20px;
        padding-top: 10px;
    }
}

@media (min-width: 800px) {
    .smiles:hover {
        cursor: pointer;
    }
}

#recaptcha {
    min-height: 88px;
    padding-bottom: 10px;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.button-submit {
    height: 2.5em;
    padding: 0 20px;
    display: inline-block;
    box-sizing: border-box;
    line-height: normal;
    font-size: inherit;
    font-family: inherit;
    text-decoration: none;
    border: 1px solid transparent;
    outline: none;
    margin: 0;
}

.button-submit:hover {
    cursor: pointer;
}

.comment_vote {
    padding-top: 6px;
    height: 26px;
    display: flex;
    margin-left: auto;
    order: 2
}

.name_time {
    display: flex;
    flex-direction: column;
    order: 1;
    padding-left: 15px;
    padding-top: 4px;
}

.vote_value {
    min-width: 30px;
    text-align: center
}

.vote_value > span {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 14px
}

.vote_value.green {
    background-color: #eefbf3
}

.vote_value.green > span {
    color: #05610e
}

.vote_value.grey {
    background-color: rgba(89, 89, 89, .1)
}

.vote_value.grey > span {
    color: #595959
}

.vote_value.red {
    background-color: #fff1f1
}

.vote_value.red > span {
    color: #cd192e
}

.vote_dislike {
    margin-right: 6px
}

.vote_like {
    margin-left: 6px
}

.vote_dislike.active > .icon {
    fill: #cd192e
}

.vote_dislike > .icon:hover {
    cursor: pointer;
    fill: #cd192e
}

.parent > .vote_like {
    visibility: hidden
}

.parent:hover > .vote_like {
    visibility: visible
}

.vote_like.active > .icon {
    cursor: pointer;
    fill: #2ea83a
}

.vote_like > .icon:hover {
    cursor: pointer;
    fill: #2ea83a
}

.answer {
    text-align: right;
    padding-bottom: 5px
}

.answer > span {
    color: #3f738e;
    font-size: 15px
}

#answer {
    padding-left: 110px;
    padding-top: 15px;
    color: #595959
}

.answer_to {
    font-size: 12px;
    padding-left: 15px;
    color: #595959
}

#answer > .icon, .answer_to > .icon {
    fill: #595959
}

#answer > svg, .answer_to > svg {
    margin-right: 5px
}

.answer > span:hover {
    cursor: pointer;
    text-decoration: underline
}

.tox .tox-tbtn:hover, .tox .tox-tbtn.active {
    background: #dee0e2
}

.tox-tbtn:hover {
    cursor: pointer;
}

.tox {
    display: flex
}

.tox .tox-tbtn {
    align-items: center;
    background: 0 0;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    color: #222f3e;
    display: flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: 34px;
    justify-content: center;
    margin: 2px 0 3px;
    outline: 0;
    overflow: hidden;
    padding: 0;
    text-transform: none;
    width: 34px
}

.tox :not(svg):not(rect) {
    background: 0 0;
    border: 0;
    float: none;
    height: auto;
    margin: 0;
    max-width: none;
    outline: 0;
    position: static;
    width: auto;
    padding: 3px 0 0
}

section.comments {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(48, 62, 75, .06);
    padding: 20px;
    margin-top: 20px;
}

@media (max-width: 800px) {
    section.comments {
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(48, 62, 75, .06);
        padding: 10px;
        margin-top: 20px;
    }
}

.prefix {
    color: #2d3138;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
}


#comment:empty:not(:focus):before {
    content: attr(data-placeholder);
    color: #999999
}

.comment_header {
    display: flex;
}

.commentator {
    font-size: 17px;
    color: #0574ad;
}

.comments-title {
    display: block;
    padding-bottom: 10px;
}

.avatar-generate {
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}

.comment {
    font-size: 17px;
    color: #444;
    padding-top: 10px;
    white-space: pre-wrap;
    margin-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
}

.comment_div {
    border-bottom: 1px solid #ececec;
    padding: 10px 0;
}

#comments_sort {
    color: #444;
    border: 1px solid #BBB;
    background-color: #FFF;
     height: 2.2em;
    padding: 0 .64em;
    display: inline-block;
    box-sizing: border-box;
    line-height: normal;
    font-size: inherit;
    font-family: inherit;
    text-decoration: none;
    outline: none;
    margin: 0;

}

.right_comments_sort {
    right: 20px;
    top: 12px;
    font-size: 15px;
    float: right;
}

[name="comForm"]{
    padding-top: 10px;
}

.form-input {
    color: #444;
    border: 1px solid #BBB;
    background-color: #FFF;
    height: 2.5em;
    display: inline-block;
    box-sizing: border-box;
    line-height: normal;
    font-size: 17px;
    font-family: inherit;
    text-decoration: none;
    outline: none;
    margin: 10px 0;
    padding-left: 10px;
}

@media (min-width: 800px) {
    .form-input {
        width: 400px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    color: #555;
}

.comment-more {
    display: flex;
    justify-content: center;
}

#load-more-comments{
    display: flex;
    justify-content: center;
}

.more-comments {
    margin-top: 20px;
    height: 40px;
    width: 200px;
    background-color: #eef2ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.more-comments > span {
    color: #325efb;
}

.more-comments:hover {
    cursor: pointer;
}

.more-comments > span:first-child {
    font-size: 18px;
}

.more-comments > span:nth-child(2) {
    padding-right: 20px;
    font-size: 22px;
    font-weight: bold;
}


.h3-title {
    color: #fff !important;
    margin-bottom: 25px !important;
    font-size: 24px !important;
    margin-top: 25px;
}

#recaptchaModal{
    z-index: 4;
}

#increase-image:hover {
    opacity: .7;
}

#increase-image {
    border-radius: 5px;
    cursor: pointer;
    transition: .3s
}



.modal {
    display: none;
    position: fixed;
    z-index: 11;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9)
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 512px
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 512px;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    height: 150px
}

.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: .6s;
    animation-name: zoom;
    animation-duration: .6s
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer
}

@media only screen and (min-width: 701px) {
    .close {
        position: absolute;
        top: 45px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: 700;
        transition: .3s
    }
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%
    }

    .close {
        position: absolute;
        bottom: 70px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: 700;
        transition: .3s
    }
}

.link {
    text-decoration: none;
    color: #333;
}
p.bio > a {
    color: #056c9c;
}

 i.icon {
    display: flex;
    margin-left: auto;
     height: 40px;
     width: 40px;
     align-self: center;
}

.icon-more {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' %3E%3Cuse xmlns:xlink='http://www.w3.org/1999/xlink' xlink:href='%23icon-more'%3E%3Csymbol fill='%23949494' id='icon-more' viewBox='0 0 5 19'%3E%3Cg transform='translate(-483, -684)'%3E%3Cg transform='translate(478, 678)'%3E%3Cpath d='M7.5,20 C8.875,20 10,21.125 10,22.5 C10,23.875 8.875,25 7.5,25 C6.125,25 5,23.875 5,22.5 C5,21.125 6.125,20 7.5,20 L7.5,20 Z M7.5,18 C6.125,18 5,16.875 5,15.5 C5,14.125 6.125,13 7.5,13 C8.875,13 10,14.125 10,15.5 C10,16.875 8.875,18 7.5,18 L7.5,18 Z M7.5,11 C6.125,11 5,9.875 5,8.5 C5,7.125 6.125,6 7.5,6 C8.875,6 10,7.125 10,8.5 C10,9.875 8.875,11 7.5,11 L7.5,11 Z' transform='translate(7.5, 15.5) scale(1, -1) translate(-7.5, -15.5) '/%3E%3C/g%3E%3C/g%3E%3C/symbol%3E%3C/use%3E%3C/svg%3E");
    align-self: center;
    height: 25px;
    width: 25px;
    margin-left: auto;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(20px);
}

@media (max-width: 800px) {
    .icon-more {
        align-self: center;
        height: 22px;
        width: 22px;
        margin-left: auto;
        margin-right: 28px;
        opacity: 1;
    }
}
@media (min-width: 800px) {
.track:hover i > .icon-more {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition: all .2s cubic-bezier(.4,0,.2,1);
    transition: all .2s cubic-bezier(.4,0,.2,1);
}
}

body.black {
    background-color: #000;
}

.icon.js-more:hover {
    cursor: pointer;
}
#search-results {
    position: absolute;
    display: flex;
    max-width: 1005px;
    z-index: 7;
    width: 100%;
}

#search-results > .search-hints{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    border-bottom: 2px solid #325efb;
    border-left: 2px solid #325efb;
    border-right: 2px solid #325efb;
    width: 100%;
}

@media (max-width: 800px) {
    #search-results > .search-hints {
        width: calc(100% - 30px);
    }
}

.foo-letters {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-bottom: 40px;
    padding-left: 0;
    flex-wrap: wrap;
}
.foo-letters > li {
    font-size: 18px;
    text-transform: capitalize;
    color: #b6b6b6;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    margin: 10px 6px;
    white-space: nowrap;
}
.foo-letters > li:first-child:after {
    padding-left: 10px;
    content: "•";
}
.foo-letters > li:hover {
    color: #fff;
    cursor: pointer;
}
.edit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 17px;
    background-color: #eef2ff !important;
    color: #325efb !important;
    cursor: pointer;
}
.edit-btn>span {
    white-space: nowrap;
}
.edit-btn.lyrics-edit {
    max-width: 115px;
}
.edit-btn.propose-edit {
    max-width: 140px;
}
.edit-btn.cancel-edit {
    max-width: 85px;
    margin-left: 15px;
}

.lyrics-box {
    padding-top: 10px;
    display: flex;

}
.lyrics-left {
    width: 50%;
}
@media (max-width: 800px) {
    .lyrics-box {
        flex-direction: column;
    }
    .lyrics-left {
        width: 100%;
    }
}


textarea.lyrics {
    margin-top: 10px;
    padding: 15px;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 100;
    border-radius: 0;
    line-height: 1.5;
    resize: none;
    overflow-y: hidden;
    min-height: 18.75rem;
    width: 100%;
}

@media (max-width: 800px) {
    textarea.lyrics {
        width: 100%;
    }
}

.buttons-panel {
    display: flex;
    flex-direction: row;
}

.lyrics-right {
    display: none;
}

.video-box{
    padding-top: 35.25%;
    max-width: 768px;
    overflow: hidden;
    background-color: #DDD;
    position: relative;
}
@media (max-width: 800px) {
    .video-box {
        padding-top: 56.25%;
    }
}
.video-box iframe {
    border: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.edit-btn.add-lyrics {
    width: 110px;
    height: 30px;
    margin-right: 10px;
}

span[data-href="/add-song"]{
    cursor: pointer;
}
.lyrics-message {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}
.img-lyrics-task {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}
.lyrics-buttons {
    display: flex;
    flex-direction: row;
}
.select-country {
    padding-top: 20px;
}
q {
    quotes: "«" "»";
}
.you-might-also-like {
    padding-top: 15px;
}