.au-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.au-tabs--tab-container {
  flex: 0 0 50%;
}

.au-tabs--content-wrapper {
  flex: 0 0 50%;
}

.au-tabs--tab-list {
  list-style: none;
  padding: 0;
}

.au-tabs--content {
  display: none;
}

.au-tabs--content.show {
  display: block;
}

.au-tabs__content-media {
  position: relative;
}

.au-tabs__image--overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.au-tabs__content-media img {
  width: 100%;
}

.au-tabs__content-media iframe {
  height: 320px;
  width: 100%;
}

.au-tabs__btn {
  border-radius: 50%;
  left: 0;
  margin: 0 auto;
  padding: 20px 20px 13px 20px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: fit-content;
}

.au-tabs__btn svg {
  width: 18px;
}

.au-tabs__btn::before {
  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: -1;
}

.au-tabs__btn::after {
  align-items: center;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: ripple;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  border-radius: 50%;
  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: -1;
}

.au-tabs__play-button-image {
  width: 100%;
  max-width: 30px;
  max-height: 30px;
} 

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

@media only screen and (min-width: 991px) { 
  .au-tabs__content-media iframe {
    height: 640px;
    width: 100%;
  }
}
