.video_wrapper {
    position: relative;
    min-height: 400px;
    width: 100%;
}

.video_wrapper .video_trigger {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(left, #ecf1ee 0%, #d8e8de 100%);
    background: -o-linear-gradient(left, #ecf1ee 0%, #d8e8de 100%);
    background: linear-gradient(to right, #ecf1ee 0%, #d8e8de 100%);
    border: 8px solid #ecf1ee;
    color: #464c49;
    z-index: 9;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 32px;
}

.video_wrapper .video_layer {
  position: relative;
  padding: 56.25% 0 0 0;
  height: 100%;
  width: 100%;
  margin: auto;
}

.video_wrapper .video_layer.loaded {
    position: relative;
    padding: 56.25% 0 0 0;
    height: 100%;
    width: 100%;
    margin: auto;
}

.video_wrapper .video_layer iframe {
    border: 0px none transparent;
    height: inherit;
    width: inherit;
    padding: 0;
}

.video_wrapper .video-btn {
    cursor: pointer;
    display: inline-block;
    transition: color 0.5s, background-color 0.5s, border 0.5s;
    padding: 8px 16px;
    font-size: 16px;
    background-color: transparent;
    color: #464c49;
    border: 1px solid #464c49;
    border-radius: 3px;
}

.video_wrapper .video-btn:hover {
    background-color: #464c49;
    color: #fff;
}
