.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 switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 42px;
    z-index: 9;
    border: 2px solid #00525d;
    border-radius: 25px;
}

.switch:before {
    opacity: 0;
    width: 0;
    height: 0;
    background-image: url('../includes/assets/PR-ON.png');
}

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

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

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

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

input:checked + .slider:before {
    transform: translateX(38px);
    background-image: url('../includes/assets/PR-ON.png');
}

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