body {
    background-color: #cfe2f3;
    color: #222222;
}

a {
    color: #222222;
}

a:hover {
    color: #2a8ee7;
    text-decoration: none;
}

h1 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 24px;
}

a.logo {
    font-size: 42px;
    font-weight: 600;
}

form.search {
    display: flex;
}

form.search input {
    padding-right: 35px;
}

form.search button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    margin-left: -31px;
    color: #ababab;
}

.alert {
    margin-top: 20px;
}

.seo-prefix-h1 {
    font-size: 16px;
}

.see-more {
    display: block;
    font-size: 20px;
    margin-top: 15px;
}

.container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 900px;
}

.basic-container {
    background-color: #FFFFFF;
}

.display-none {
    display: none;
}

.lyrics-text pre, .lyrics-text {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 18px;
}

.page-info {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    color: #000000;
    margin: 15px 0 0;
}

.page-info .uSocial-Share {
    margin-top: -2px;
}

.page-info .track-actions, .page-info .counters {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 10px;
}

.page-info .info-item {
    margin-right: 10px;
    border: 1px solid #ced4da;
    border-radius: 20px;
    padding: 8px 17px 6px;
    width: -moz-fit-content;
    width: fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    color: #868686;
    transition: 0.3s;
}

.page-info .info-item:hover {
    color: #000000;
    transition: 0.3s;
}

.page-info .info-item i {
    font-size: 14px;
    margin-right: 5px;
}

.page-info .info-item.listen {
    background-color: #2a8ee7;
    color: #FFFFFF;
    display: flex;
}

.page-info .info-item.download {
    background-color: #009559;
    color: #FFFFFF;
    display: flex;
    max-width: 75px;
}

.page-info .info-item.download:hover {
    background-color: #007848;
}

.page-info .info-item.download .btn-download {
    border: none;
    padding: 0px;
    margin: 0px;
    background: inherit;
    color: #FFFFFF;
    min-width: 75px;
}

.page-info .info-item.listen:hover {
    cursor: pointer;
    background-color: #0d5ea3;
}

/* TABS */
.nav-tabs .nav-item {
    padding: 0 20px;
}

.nav-tabs .nav-item:first-child {
    padding: 0 20px 0 0;
}

.nav-tabs .nav-link {
    padding: 0;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #777;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #FFFFFF;
    border-color: #FFFFFF #FFFFFF #2a8ee7;
    border-bottom: 2px solid #2a8ee7;
    border-radius: 0;
}

.tab-content {
    padding: 10px 0 0 0;
}

/* END TABS */

/* HEADER */
.header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.header .logo:hover {
    text-decoration: none;
}

.header .main-menu .menu-item {
    margin-left: 10px;
    font-size: 16px;
}

/* END HEADER */

/* CONTENT */
.content {
    padding: 0 15px 15px 15px;
    min-height: 70vh;
}

/* END CONTENT */

/* HOME PAGE */

/* END HOME PAGE */

/* SEARCH PAGE */
form.search .search-results {
    margin-top: 20px;
}

/* END SEARCH PAGE */

/* popular-artists */

.artists-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.artists-list a.artist-item {
    display: block;
    width: 146px;
    margin: 10px;
    text-align: center;
}

.artists-list a.artist-item .image {
    width: 100%;
    height: 146px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.artists-list a.artist-item .image .letters {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 146px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.artists-list a.artist-item:hover {
    opacity: 0.8;
    transition: 0.3s;
}

/* End of popular-artists */

/* track page */

.track .artist-name {
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px;
}

.track .download-block .btn-download {
    border: none;
    background: #009559;
    color: #FFFFFF;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 22px;
    font-size: 18px;
}

.track .download-block #countdown {
    text-align: center;
    padding: 20px;
}

.track .article {
    text-align: justify;
    font-size: 12px;
}

/* END track page */

/* tracks list block */

.tracks-list .item {
    display: flex;
    align-items: center;
    border: 2px solid #FFF;
    padding: 5px;
    cursor: pointer;
    position: relative;
}

.tracks-list .item .overlay {
    display: none;
    width: 50px;
    height: 50px;
    background: rgb(0 0 0 / 60%);
    position: absolute;
    z-index: 1;
}

.tracks-list .item:hover {
    border: 2px solid #2a8ee7;
}

.tracks-list .item:hover .overlay {
    display: initial;
}

.tracks-list .item.hovered {
    border: 2px solid #2a8ee7;
}

.tracks-list .item.hovered .overlay {
    display: initial;
}

.tracks-list .item .image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: #ffb3b3;
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracks-list .item .image.artist-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tracks-list .item .image .letters {
    color: #FFF;
    font-size: 22px;
}

.tracks-list .item .image .play {
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 26px;
    position: absolute;
    top: 5px;
    left: 14px;
    z-index: 2;
}

.tracks-list .item .image .play .fa-play {
    display: none;
}


.tracks-list .item:hover .play .fa-play {
    display: initial;
}


.tracks-list .item.hovered .play .fa-play {
    display: initial;
}


.tracks-list .item:hover .image {
    background-color: srgb(255, 255, 255, 0.5);
}

.tracks-list .item .title {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
    width: 72%;
    line-height: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tracks-list .item .title .track-title {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tracks-list .item .title .artist-name {
    color: #8C8C8C;
    font-size: 13px;
    margin-top: 5px;
}

.tracks-list .item .title a.artist-name:hover {
    color: #2a8ee7;
}

.tracks-list .item .views,
.tracks-list .item .download {
    display: flex;
    align-items: center;
    color: #8C8C8C;
    text-align: left;
    width: 60px;
    /*min-width: 60px;*/
}

.tracks-list .item .views {
    width: 65px;
    margin-left: 5px;
}

.tracks-list .item .views .img {
    margin-right: 5px;
    font-size: 20px;
    color: #adadad;
}

.tracks-list .item .views .count {
    min-width: 40px;
    font-size: 12px;
    margin-left: 3px;
}

.tracks-list .item .download {
    width: 40px;
    margin-left: 5px;
}

.tracks-list .item .btn-download {
    border: none;
    padding: 0px;
    margin: 0px;
    background: inherit;
    font-size: 20px;
    color: #adadad;
}

.tracks-list .item .btn-download:hover {
    color: #000000;
}

.tracks-list .item .btn-download span {
    display: none;
}

/* END of tracks list block */

.paginator-block {
    margin-top: 30px;
    margin-bottom: 32px;
}

/* Artists page */

.artists .letters-block {
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    margin: 40px 0;
}

.artist .biography {
    font-size: 16px;
    text-align: justify;
}

.artist .artist-info {
    padding-bottom: 15px;
}

.artist .artist-info .artist-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 160px;
    width: 100%;
    margin-top: 15px;
}

/* End of Artists page */

/* FOOTER */

.footer {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
    height: 180px;
    border-top: 1px solid #e5e5e5;
    padding: 15px 30px;
    color: #969696;
}

.artists .footer {
    height: auto;
}

/* end of FOOTER */

/* Comments (legacy layout без figma-home) */
.comments {
    max-width: 100%;
    width: 100%;
}

.comments .comment {
    font-size: 14px;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 12px;
    box-shadow: none;
    margin-bottom: 12px;
    overflow: hidden;
}

.comments .comment .comment-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #828282;
    background: #f8fafc;
    border-bottom: 1px solid #dddddd;
}

.comments .comment .comment-body {
    padding: 12px 14px 14px;
}

.comments .comment .comment-body pre {
    margin: 0;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.55;
    color: #0e0e0e;
    background: transparent;
    border: 0;
}

.comments .new-comment {
    padding: 16px;
    border: 1px solid #dddddd;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 20px;
}

.comments .comment .comment-header strong {
    color: #0e0e0e;
    font-weight: 700;
}

.comments .comment .comment-header small,
.comments .comment .comment-header time {
    font-size: 12px;
}

.comments .form-group {
    margin-bottom: 14px;
}

.comments .form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.comments .form-control:focus {
    outline: none;
    border-color: #2a8ee7;
    box-shadow: 0 0 0 2px rgba(42, 142, 231, 0.12);
}

.comments textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.comments .btn-save {
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    min-height: 37px;
    background: #2a8ee7;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.comments .btn-save:hover {
    filter: brightness(1.05);
}

/* end of Comments */

/* social share */

.social-share {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.track .social-share {
    margin-bottom: 0px;
}

.track .track-info {

}

.track .track-info .artist-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 160px;
    width: 100%;
    margin-top: 15px;
}

.social-share .share-title {
    font-size: 16px;
    margin-right: 15px;
}

.social-share a {
    margin-right: 10px;
    font-size: 18px;
    color: #FFFFFF;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: 0.5s;
}

.social-share a:hover {
    opacity: 0.5;
    transition: 0.5s;
}

.social-share a.whatsapp {
    background-color: #25d366;
}

.social-share a.vk {
    background-color: #4D75A3;
}

.social-share a.telegram {
    background-color: #37AEE2;
}

.social-share a.ok {
    background-color: #E67E17;
}

/* end of social share */

/* NOT FOUND */

.notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.notfound {
    max-width: 520px;
    width: 100%;
    line-height: 1.4;
    text-align: center
}

.notfound .notfound-404 {
    position: relative;
    height: 240px
}

.notfound .notfound-404 h1 {
    font-family: montserrat, sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 252px;
    font-weight: 900;
    margin: 0;
    color: #2a8ee7;
    text-transform: uppercase;
    letter-spacing: -40px;
    margin-left: -20px
}

.notfound .notfound-404 h1 > span {
    text-shadow: -8px 0 0 #fff
}

.notfound .notfound-404 h3 {
    font-family: cabin, sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #262626;
    margin: 0;
    letter-spacing: 3px;
    padding-left: 6px
}

.notfound h2 {
    font-family: cabin, sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-top: 0;
    margin-bottom: 25px
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        height: 200px
    }

    .notfound .notfound-404 h1 {
        font-size: 200px
    }
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 {
        height: 162px
    }

    .notfound .notfound-404 h1 {
        font-size: 162px;
        height: 150px;
        line-height: 162px
    }

    .notfound h2 {
        font-size: 16px
    }
}

/* END of  NOT FOUND */

.grecaptcha-badge {
    visibility: hidden !important;
}

.admin-block ul{
    display: flex;
    list-style-type: none;
}


.admin-block ul li{
    margin-right: 10px;
}

ins.adsbygoogle[data-ad-status='unfilled'] {
    display: none !important;
}
