.player-container {
    background-color: black;
    float: left;
    margin: 0;
    width: 100%;
    position: relative;
}

.player-container .jw-wrapper {
    margin-bottom: 0;
}

.btnCerrar {
    background-color: white;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    font-size: 20px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: none;
}

.player-minimize .btnCerrar {
    display: block;
}

.player-minimize .player-position {
    background-color: white;
    border-radius: 2px;
    bottom: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
    left: 20px;
    padding: 7px;
    position: fixed;
    width: 40%;
    z-index: 1;
}

@media screen and (min-width: 320px) {
    .player-minimize .player-position {
        width: 100%;
        top: 49px;
        left: 0;
        right: 0;
        bottom: inherit;
    }

    .player-minimize .btnCerrar {
        font-size: 1.5em;
        width: 35px;
        height: 35px;
    }
}

@media only screen and (min-width: 740px) and (orientation: landscape) {
    .player-minimize .player-position {
        width: 60%;
        bottom: 10px;
        top: inherit;
        left: 10px;
        right: inherit;
    }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) {
    .player-minimize .player-position {
        width: 60%;
        bottom: 10px;
        top: inherit;
        left: 10px;
        right: inherit;
    }
}

@media screen and (min-width: 768px) {
    .player-minimize .player-position {
        width: 40%;
        top: inherit;
        right: inherit;
        bottom: 20px;
        left: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .player-minimize .player-position {
        width: 40%;
        top: inherit;
        bottom: 20px;
        left: 20px;
        right: inherit;
    }
}

