.mxm_video_teaser_container {
    position: relative;
    overflow: hidden;
}
/*.mxm_video_wrapper {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: -1;*/
/*}*/

/*.mxm_video_wrapper video {*/
/*    min-width: 100%;*/
/*    min-height: 100%;*/
/*    width: auto;*/
/*    height: auto;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%,-50%);*/
/*}*/


.mxm_video_wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.mxm_video_wrapper video {
    min-width: 100%;
    min-height: 100%;
    width: auto !important;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: unset !important;
}

.mxm_video_teaser_content {
    position: absolute;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding:0 15px 100px 15px;

}

.mxm_video_teaser_title {
    font-weight: 300;
}

.mxm_video_teaser_description {
    font-size: 23px;
    font-weight: 300;
}

.mxm_video_teaser_button {
    width: auto;
    height: auto;
    padding: 8px 40px 8px 15px;
    text-align: center;
    line-height: 1em;
    text-decoration: none;
    cursor: pointer;
    float: right;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 20px;
    letter-spacing: 1px;
    -moz-transition: background .2s cubic-bezier(.2,.3,.25,.9);
    -o-transition: background .2s cubic-bezier(.2,.3,.25,.9);
    -ms-transition: background .2s cubic-bezier(.2,.3,.25,.9);
    -webkit-transition: background .2s cubic-bezier(.2,.3,.25,.9);
    transition: background .2s cubic-bezier(.2,.3,.25,.9);
}

.mxm_video_teaser_button .play-icon {
    width: 64px;
    height: 64px;
    float: left;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mxm_video_teaser_button .button-label {
    font-weight: 300;
    line-height: 64px;
}


.icon-scroll,
.icon-scroll:before {
    position: absolute;
    left: 50%;
}
.icon-scroll {
    width: 30px;
    height: 50px;
    margin-left: -20px;
    bottom: 50px;
    margin-top: -35px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 25px;
    z-index: 3;
}
.icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}
@-webkit-keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(36px);
        transform: translateY(36px);
    }
}

.mxm_video_overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0,0,0,.35);
}
