.custom_video_container {
  border-radius: 4vw;
  border-radius: 40px;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 65px;

  width: 100%;
	max-width: 800px;
	transform: unset;
	margin-left: auto;
	margin-right: auto;
  margin: 65px auto 0;
}

.custom-video-area {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* max-width: 72em; */
  height: 0;
  margin: auto;
  padding-bottom: 56.25%;
  text-align: left;
}
.custom-video-area video {
  position: absolute;
  top: 0;
  right: -50%;
  bottom: 0;
  left: -50%;
  min-width: 100%;
  width: 100%;
  min-height: 100%;
  margin: auto;
}

.video-controls {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0 !important;
  left: 0;
  width: 100%;
  margin: auto;
  padding: 0 0 10px 0;
  transition: all 0.4s ease-in-out;
  background: rgba(0, 0, 0, 0.5);
  background: transparent;
}
/* progress bar wrapper */
.video-controls .top-wrapper {
  display: block;
  display: none;
}
.video-controls .bottom-wrapper {
  padding: 0 20px 0 20px;
  display: block;
}
.video-controls .bottom-wrapper > div:not(.play-button) {
  display: none;
}
.video-controls .progress-bar {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  background: rgba(175, 171, 201, .6);
}
.video-controls .progress-bar span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
}
.video-controls .progress-bar .time-bar {
  z-index: 10;
  background: #142b8b;
  background: rgba(46, 26, 71, 0.6);
}
.video-controls .progress-bar .buffer-bar {
  z-index: 5;
  background: rgba(46, 26, 71, .6);
  background: rgba(175, 171, 201, .6);
}
.video-controls_more {
  padding: 0 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.video-controls .play-button {
  display: inline-block;
  /* width: 24px; */
  cursor: pointer;
  vertical-align: middle;

  position: absolute;
  right: 35px;
  bottom: 35px;
  width: 48px;
  height: 48px;
  width: 3.5vw;
  height: 3.75vw;
  right: 3vw;
  bottom: 2.75vw;
  right: 5vw;
  bottom: 5vw;
  border-radius: .5vw;
  background: white;

  bottom: 40px;
	right: 40px;
  max-width: 45px;
  max-height: 48px;
}
.video-controls .play-button:hover {
  background: rgb(46, 26, 71);
}
/* button state paused */
.video-controls .play-button:before {
  font-family: "FontAwesome";
  content: "\f04b";
  color: #fff;

  content: '';
  background-image: url(../images/icon_play_purple.png);
  background-size: contain;
  position: absolute;
  width: 3.5vw;
  height: 3.5vw;
  right: 0px;
  bottom: .1vw;

  width: 100%;
  height: 100%;
  bottom: -2px;
}
/* button state playing */
.video-controls.playing .play-button:before {
  background-image: url(../images/icon_pause_purple.png);
  right: .05vw;
  right: 1px;
}
.video-controls .play-button:hover:before {
  background-image: url(../images/icon_play_white.png);
}
.video-controls.playing .play-button:hover:before {
  background-image: url(../images/icon_pause_white.png);
}

.video-controls .time {
  font-size: 11px;
  font-weight: 600;
  line-height: 12px;
  display: inline-block;
  width: 80px;
  vertical-align: middle;
  color: #fff;
}
.video-controls .sound-button {
  display: inline-block;
  width: 16px;
  cursor: pointer;
  vertical-align: middle;
}
.video-controls .sound-button:before {
  font-family: "FontAwesome";
  content: "\f027";
  color: #fff;
}
.video-controls .sound-med:before {
  font-family: "FontAwesome";
  content: "\f028";
  color: #fff;
}
.video-controls .sound-muted:before {
  font-family: "FontAwesome";
  content: "\f026";
  color: #fff;
}
.video-controls .volume {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 70px;
  height: 4px;
  cursor: pointer;
  vertical-align: middle;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}
.video-controls .volume .volume-bar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  background-color: #fff;
}
/* .video-controls .btnFS {
  position: relative;
  top: 3px;
  display: inline-block;
  float: right;
  cursor: pointer;
  vertical-align: middle;
}
.video-controls .btnFS:before {
    font-size: 14px;
    font-family: "FontAwesome";
    content: "\f0b2";
  color: #fff;
} */

@media (max-width: 767px) {
  .custom_video_container {

  }
  .video-controls .play-button {
    right: 35px;
    bottom: 25px;
    width: 33px;
    height: 36px;
  }
  .video-controls .play-button:before {
    right: 0;
    bottom: 1px;
    width: 33px;
    height: 33px;
  }
}

@media (max-width: 600px) {
  .custom_video_container {
  }
  .video-controls .play-button {
  }
  /* button state paused */
  .video-controls .play-button:before {
  }
  /* button state playing */
  .video-controls.playing .play-button:before {
  }
}