/* ===== ШРИФТЫ ===== */
@import url('../fonts/fonts.css');

* {
    box-sizing: border-box;
}

body {
    font-family: "Gilroy", sans-serif;
    margin: 0;
}

.compact_audio_player_wrapper {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    z-index: 700;
}

@media screen and (max-width: 1200px) {
    .compact_audio_player_wrapper {
        display: none !important;
        opacity: 0;
        visibility: hidden;
    }
}

.sc_player_container1 {
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: pulse2 2s infinite;
}

.audio-player-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #04746C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.audio-player-btn img {
    display: block;
    width: 13px;
    height: 13px;
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(4, 116, 108, 0.5);
    }

    70% {
        box-shadow: 0 0 0 28px rgba(0, 103, 208, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 103, 208, 0);
    }
}