.video_player {
    display: block;
    position: relative;
    /*padding-bottom: 56.23%; (original code) */
    padding: 0 !important;
    padding-bottom: 56.25% !important;
    /* Use 75% for 4:3 videos */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0 !important;
    max-width: none !important;
}

.video_player > div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

.video_player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

.video_player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto !important;
    padding: 0 !important;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
    max-width: none !important;
}

.video_player:hover img {
    -webkit-filter: brightness(75%);
}

.video_player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin: 0 !important;
    padding: 0 !important;
    margin-left: -36px !important;
    margin-top: -36px !important;
    position: absolute;
    background: url("playicon.png") no-repeat;
    cursor: pointer;
    max-width: none !important;
}