h1 {
    margin-top: 0 !important;
}

#audio-player {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9;
}

.form-typeahead {
    width: 90%;
}

.row-audio {
    padding: 5px;
}

.row-audio:hover {
    background-color: #e5ebf1;
}

.row-audio.active {
    background-color: #e5ebf1;
}

.audio-img {
    margin-right: 10px;
    margin-top: 4px;
    float: left;
    position: relative;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #000;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
}

.artist-img {
    height: 230px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

audio {
    margin-bottom: 15px;
}

.subhead {
    font-size: 15px;
    font-weight: 500;
}

.row.display-flex {
    display: flex;
    flex-wrap: wrap;
}

.row.display-flex > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.artist-title {
    position: absolute;
    top: 170px;
    color: #fff;
    text-shadow: 0 0 20px black;
    left: 20px;
    width: 98%;
}

.text-overflow {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.restricted {
    opacity: 0.5;
}

h1 {
    font-size: 21px !important;
}

h2 {
    font-size: 18px !important;
    margin: 0 !important;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.row-playlist {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .row.vertical-align {
        display: block; /* Turn off the flexible box layout */
    }

    .row.display-flex {
        display: block;
    }
}

.block-videos img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-videos a {
    position: relative;
    width: 100%; /* Adjust the width as necessary */
    padding-top: 56.25%; /* This is for an aspect ratio of 16:9; adjust as needed for your images */
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Добавить в style.css */
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    color: #fff;
    user-select: none;
    animation-name: fall;
    animation-timing-function: linear;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}
