.ps-player-trigger {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #000;
    height: 60px;
    border-radius: 100px;
    padding: 20px 15px;
    width: 220px;
    /* line-height: 0.3; */
    font-weight: bold;
    color: #0c0e3f;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 18px;
    outline: none;
}

.ps-player-trigger:focus {
    outline: none;
}
.player-wrapper {
    display: block;
    /*padding: 5px;*/
    position: fixed;
    z-index: 999;
    top: 10%;
    left: 0;
    right: 0;
    /*max-width: unset;*/
    width: auto;
    margin: 0 auto;
    /*background-color: #fff;*/

}

.player-wrapper .overlay {
    position: fixed;
    background-color: rgba(0,0,0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.player-wrapper .close-player {
    position: absolute;
    right: -25px;
    font-size: 40px;
    color: #fff;
    top: -45px;
    cursor: pointer;
}

 .ytp-pause-overlay{
     display:none;
 }
 .player-inner {
     background-color: #fff;
     padding: 7px;
     position: relative;
     margin: 0 auto;
     display: inline-block;
 }
@media(max-width: 768px) {
    .player-wrapper iframe {
        width: auto !important;
        height: auto !important;
    }
    .player-wrapper {
        max-width: 100% !important;
        top: 20%;
    }

}
@media(max-width: 480px) {

    .player-inner {
        /*background-color: unset;*/
    }
}

@media(max-width: 380px) {
    .player-wrapper .close-player {
        right: 0;
        top: -55px;
    }
}