/*page style*/
#page_content {
    display: flex;
    margin: 0;
}

#page_content--big {
    flex: 1;
}

@media only screen and (max-width: 991px) {
    #page_content {
        padding-top: 4.5rem !important;
    }
}

@media only screen and (max-width: 400px) {
    #page_content {
        padding-top: 4rem !important;
    }
}

/*banner */
.top-profile-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    background-position-x: 50%;
}

.top-profile-banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
    /*border-radius: 5px;*/
}

.top-profile-banner--container {
    text-align: center;
    max-width: 35%;
    margin: auto;
    padding: 7% 0;
}

.top-profile-banner--container__headline {

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -0.02em;

    color: #FFFFFF;
}

/*songs container*/

.user-songs-container {
    width: 100%;
    /*border-radius: 5px;*/
    background-color: #FFFFFF;
    /*padding-top: 10px;*/
}

.user-songs-container__song-attributes:hover > .songPlay {
    display: block;
}

.user-songs-container__song-attributes {
    width: auto;
    max-width: 80%;
    margin: auto;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
}

.user-songs-container__song-attributes__image {
    max-width: 250px;
    width: 100%;
    height: 100%;
    max-height: 250px;
}

.user-songs-container__song-attributes__name {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-align: left;
    color: #000000;
}

.user-songs-container__song-attributes__band {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0;
    text-align: left;
    color: #B2B2B2;
}

.preview-warning-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;

}

@media only screen and (max-width: 991px) {
    .top-profile-banner--container {
        max-width: 100%;
    }
}

