@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@800&family=Poppins&family=Roboto&family=Ubuntu&display=swap');


#metronome .metronome-container {
    width: 100%;
    margin-top: 1%;
    margin-bottom: 8%;
    border-radius: 20px;
    font-family: 'Poppins';
    font-style: normal;
    background: var(--pripomocki-wrap-background);
}


/* Page Title */

#page-title {
    font-size: 31px;
    margin: 20px;
    text-align: center;
    font-weight: 400;
}

#brand-logo {
    margin-top: 20px;

    padding-top:40px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center
}
#brand-logo img {
    width: 90px;
}

/* Slider metronome */

#metronome .metronome {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-top:50px;
}

#metronome .slider {
    width: 80%;
    height: 40px;
    appearance: none;
    border-radius: 30px;
    outline: none;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 0 8px;
    background: linear-gradient(180deg, #25a56a 0%, #71cf9f 100%);
    /*box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1), -5px -5px 10px #fff, inset 5px 5px 5px rgba(0, 0, 0, 0.1);*/
    -webkit-transition: .2s;
    transition: opacity .2s;
    -webkit-appearance: none;
}

#metronome .slider:hover {
    opacity: 1;
}

#metronome .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

#metronome .slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

#bmp-display {
    margin-top: 20px;
}

#bmp,
#bpm-display {
    font-size: 50px;
    text-align: center;
    font-weight: 400;
    color: #28513E;
    margin-bottom:30px;
}

#metronome .show {
    display: block;
}

#mobile-range {
    width: 80%;
    display: none;
}

#mobile-range span {
    font-size: 40px;
    margin-top: 0;
}

#metronome .beats-value {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#metronome .beats-value span {
    color: #0008;
    text-align: center;
}

#beats-value {
    padding: 2px 10px;
    color: #FFFFFF;
    border-radius: 15px;
    background: linear-gradient(180deg, #25a56a 0%, #71cf9f 100%);
}

#beats {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#metronome .btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 50px;
    font-weight: 400;
    border: none;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    color: #FFFFFF;
    background: linear-gradient(180deg, #25a56a 0%, #71cf9f 100%);
}


/* Leds */

#led-indicator {
    width: 60%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between
}

#metronome .led-indicator {
    width: 40px;
    height: 40px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#metronome .led {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#metronome .led-color {
    background: linear-gradient(180deg, #25a56a 0%, #71cf9f 100%);
}


/* Play Pause Button */

#play-pause {
    border-radius: 16px;
    margin-top: 45px;
    margin-bottom: 30px;
    padding: 6px 30px;
    font-size: 22px;
    font-weight: 400;
    border: none;
    text-align: center;
    cursor: pointer;
    user-select: none;
    color: #FFFFFF;
    background: linear-gradient(90deg, #25a56a 0%, #71cf9f 100%);
    transition: all .5s;
}
#play-pause:hover {
    scale: 1.1;
}
@media only screen and (max-width: 425px) {
    #metronome .metronome-container {
        width: 100%;
    }
    #metronome .metronome {
        height: 70%;
        justify-content: center;
        margin-top: 0;
    }
    #metronome .header {
        flex-direction: column;
    }
    #page-title {
        font-size: 18px;
        font-weight: 700;
    }
    #brand-logo img {
        width: 220px;
    }
    #mobile-range {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #metronome .show,
    #metronome .slider {
        display: none
    }
    #blinking-led {
        width: 80%;
        margin-top: 35px;
    }
    #metronome .led-indicator {
        width: 32px;
        height: 32px;
    }
    #metronome .led {
        width: 22px;
        height: 22px;
    }
    #play-pause {
        margin-top: 80px;
    }
    #bmp, #bpm-display {
        margin-bottom: 0px;
    }
    #metronome .beats-value span {
        color: #fff;
        text-align: center;
    }
}