.as-video-consent {
  box-sizing: border-box;
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: stretch;
  background: #f3f7f9;
  border: 1px solid #b9ced7;
  border-radius: 10px;
  overflow: hidden;
}

.as-video-consent__notice {
  box-sizing: border-box;
  width: 100%;
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #173b4a;
}

.as-video-consent__play {
  width: 58px;
  height: 58px;
  display: block;
  position: relative;
  border-radius: 50%;
  background: #176da0;
}

.as-video-consent__play::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.as-video-consent__notice strong {
  display: block;
  font-size: 20px;
  color: #173b4a;
}

.as-video-consent__notice p {
  max-width: 520px;
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

.as-video-consent__button {
  margin-top: 5px;
  padding: 11px 17px;
  border: 0;
  border-radius: 7px;
  background: #1683a4;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.as-video-consent__button:hover,
.as-video-consent__button:focus-visible {
  background: #126d89;
}

.as-video-consent iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

.as-video-consent.is-loaded .as-video-consent__notice {
  display: none;
}

@media (max-width: 680px) {
  .as-video-consent,
  .as-video-consent__notice {
    min-height: 230px;
  }

  .as-video-consent__notice {
    padding: 22px 18px;
  }

  .as-video-consent iframe {
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }
}
