.mwb-video__full-width {
  text-align: center;
}

.mwb-video__container {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.mwb-video__container:after {
  content: "";
  bottom: 0;
  left: 0;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.mwb-video.video--play .mwb-video__container:after {
  content: unset;
}

.mwb-video__wrap-link:after {
  content: "";
  bottom: 10px;
  display: block;
  left: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.mwb-video img {
  display: block;
}

.mwb-video__inline {
  position: relative;
}

.mwb-video__inline video {
  display: block;
  height: auto;
  width: 100%;
}

.mwb-video__inline video:focus {
  outline: none;
}

.mwb-video__btn {
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 40px;
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  width: 40px;
}

.mwb-video__btn-icon, 
.mwb-video__btn-image {
  display: inline-block;
  height: 24px;
  padding-top: 8px;
  width: 24px;
}

.mwb-video__btn-image {
  padding-top: 14px;
}

.mwb-video__icon-text {
  margin-bottom: 0;
  text-align: center;
}

.mwb-video__btn-icon-title {
  left: 50%;
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translate(-50%,-50%);
  z-index: 2;
}

.mwb-video__btn::before, 
.mwb-video__btn::after {
  align-items: center;
  animation-delay: 0.5s;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: ripple;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  border-radius: 100%;
  bottom: 0;
  content: "";
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

.mwb-video__btn::after {
  animation-delay: 0s;
  border-radius: 50%;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }

  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

.mwb-video.video--play .mwb-video__btn,
.mwb-video.video--play .mwb-video__icon-text,
.mwb-video.video--play .mwb-video__overlay {
  display: none;
}

.mwb-video__content-title {
  position: absolute;
  text-align: center;
  display: none;
}

.mwb-video__content-title p {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .mwb-video__content-title {
    bottom: 50px;
    left: 10px;
    display: block;
    right: 10px;
  }
}

@media only screen and (min-width: 992px) {
  .mwb-video__wrap-link:after {
    bottom: 20px;
    left: 20px;
    right: 20px;
    top: 20px;
  }

  .mwb-video__btn {
    height: 80px;
    width: 80px;
  }

  .mwb-video__btn-icon,
  .mwb-video__btn-image {
    padding-top: 22px;
    height: 34px;
    width: 34px;
  }

  .mwb-video__btn-image {
    padding-top: 30px;
  }
  
  .mwb-video__content-title {
    bottom: 60px;
    left: 20px;
    right: 20px;
  }
}
