.video-carousel {
  overflow: visible;
}
.video-carousel-item__video,
.video-carousel-item__document-container {
  box-shadow: 0 14px 15px -12px #767575;
  border-radius: 4px;
  overflow: hidden;
}
.video-carousel-item__details {
  margin-top: 8px;
  padding: 0 8px;
  text-align: center;
}
.video-carousel-item__details--title {
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #00204d;
  text-align: center;
}
.video-carousel-item__details--description-2 {
  color: var(--s);
  font-size: 12px;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  -webkit-hyphens: none;
  hyphens: none;
  margin-bottom: 0;
}
.video-placeholder {
  z-index: 2;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 101%;
  height: 101%;
  margin: auto;
}
app-video .custom-button--2 {
    z-index: 3;
    background-color: #214679;
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 65px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    animation: pulse 2s infinite;
    box-shadow: 0 0 #00adef66;
}
app-video .custom-button--2 svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: #fff;
}
.video-carousel-item__document {
  background-color: #f7f7f4;
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
  grid-gap: 16px;
  padding: 16px;
  justify-content: center;
}
.document-carousel-item__details {}
.document-carousel-item__details--title {
  font-size: 14px;
  line-height: 24px;
}
.document-carousel-item__details--button {
  min-height: 36px;
  background-color: #28abe3;
  border-radius: 4px;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  place-content: center;
  place-items: center;
  padding: 0 16px;
  width: max-content;
  margin: 0 auto;
}
.video-carousel-item__document-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-carousel-item__document {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-carousel-button {
  position: absolute;
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  background-size: 16px 16px;
  background-color: #fff;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow:
    rgba(0, 0, 0, 0.2) 0px 3px 1px -2px,
    rgba(0, 0, 0, 0.14) 0px 2px 2px 0px,
    rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
}
.video-carousel-button-prev {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2328abe3' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z'/%3E%3C/svg%3E");
  transform: translate(0px, -12px);
}
.video-carousel-button-next {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2328abe3' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/%3E%3C/svg%3E");
  transform: translate(0px, -12px);
}

@media (max-width: 639px) {
  .video-carousel .swiper-slide, .video-carousel-item__container {
    width: 292px !important;
  }
}
@media (min-width: 640px) {
  .video-carousel .swiper-slide, .video-carousel-item__container {
    width: 415px !important;
  }
}