

/* VIDEO HTML PLAY Block ****************************************************************/

.video-text {
	position: absolute;
    left: 8%;
	bottom: 15%;
    z-index: 11;
}

.video-text h3 {
	    color: #5b534f;
}

.res-vid-container{
    position: relative;
}
.res-vid-main {
    position: relative;
    z-index: 1;
    height: 100%;
}
.res-vid-overlay {
    position: relative;
    height: 100%;
}
.res-vid-overlay .res-vid-poster {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 99%;
    z-index: 2;
}
.res-vid-overlay .res-vid-poster video {
    position: absolute;
    top: 0; 
    left:0;
    width: 100%;
    height: auto;
}
.res-vid-overlay .res-vid-poster img {
    object-fit: cover;
    max-width: 100%;
}


.res-vid-control {
    display: none;
    position: absolute;
    left: 2%;
    bottom: 6%;
    z-index: 1;
    font-size: 100%;
}
.res-vid-control i{
    /*color: #e89f29;*/
    color: #EA2152;
}
.res-vid-mute-btn,
.res-vid-playback-btn,
.res-vid-reset-btn {
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
}
.res-vid-mute-btn:hover,
.res-vid-playback-btn:hover,
.res-vid-reset-btn:hover{
    opacity: 0.6;
}

.res-vid-reset-btn{
/*    background-color: #fff;*/
    background-color: transparent;
}
.res-vid-reset-btn i{
    /*color: #e89f29;*/ /* x close */
    color: #EA2152;
}

.res-vid-time {
    position: absolute;
    right: 3%;
    bottom: 6%;
    z-index: 1;
    font-size: 80%;
    /*color: #e89f29;*/
    color: #EA2152;
}
.res-vid-progressbar-container {
    position: absolute;
    bottom: 0;
    height: 6px;
    background-color: #eee;
    left: 0;
    right: 0;
    z-index: 10;
}
.res-vid-progress {
    transition: 		width 0.2s linear;
    -webkit-transition: width 0.2s linear;
    height: 100%;
    background-color: #232323;  /* brandcolor */
    width: 0;
}
.res-vid-play-btn {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.res-vid-play-btn:after {
    content: "\f04b";
    font-size: 30px;
    padding-left: 8px;
    line-height: 420%;
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 1.0);
    margin-left: -65px;
    /*color: #e89f29;*/  /* brandcolor */
    color: #EA2152;
    top: 50%;
    left: 50%;
/*    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.2);*/
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.video-play { 
    position: relative;
}

@media only screen and (max-width: 1100px) {
	.res-vid-play-btn:after { font-size: 270%;line-height: 280%; }	
}

@media only screen and (max-width: 970px) {
    .res-vid-progressbar-container { height: 3px;}
    .res-vid-control { font-size: 75%; }
    .res-vid-mute-btn, .res-vid-playback-btn, .res-vid-reset-btn { padding: 2px 5px; }
    .res-vid-play-btn { bottom: 0; z-index: 10;}
	.res-vid-play-btn:after { width: 70px; height:70px; font-size: 22px;line-height: 330%; margin-left: -45px; padding-left: 2px;}	
}

@media only screen and (max-width: 480px) {
    .res-video-play-html .html-video {
        height: 50vw;
        position: relative;
    }
}


