.ecoboxes-player-wrapper {
    position: relative;
    display: block;
    background: #000;
    overflow: hidden;
}
.ecoboxes-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}
.ecoboxes-player[data-fit="cover"] {
    object-fit: cover;
}
.ecoboxes-player[data-fit="contain"] {
    object-fit: contain;
}
.ecoboxes-unmute-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 6px;
    display: none;
    z-index: 999;
}
.ecoboxes-unmute-btn.show {
    display: block;
}
