.audioPlayerCont .audio-control{
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 3;
}

.audioPlayerCont{
    display: flex;
    white-space: nowrap;
}

@media only screen and (max-width: 768px) {
    .audioPlayerCont{
        justify-content: center;
    }
}

/* The switchContent - the box around the sliderContent */
.switchContent {
    position: relative;
    display: inline-block;
    width: 51px;
    height: 27px;
    z-index: 9;
    border: 2px solid #00525d;
    border-radius: 25px;
}

/* Hide default HTML checkbox */
.switchContent input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The sliderContent */
.sliderContent {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.sliderContent:before {
    position: absolute;
    content: "";
    height: 25px;
    width: 25px;
    left: -2px;
    bottom: 1px;
    top: -1px;
    background-color: transparent;
    transition: .4s;
    border-radius: 50%;
    background-image: url('US-ON.png');
    background-size: cover;
}

input:checked + .sliderContent {
    /* background-color: #2196F3; */
}

input:checked + .sliderContent:before {
    transform: translateX(27px);
    background-image: url('PR-ON.png'); /* replace with actual URL */
    background-size: cover;
}

#header-button{
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
