/*!*********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/views/box-video/box-video.scss ***!
  \*********************************************************************************************************************************************************/
.box-video__wrap {
  width: 100%;
  position: relative;
}
.box-video__wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.box-video__clip {
  display: block;
  width: 100%;
  aspect-ratio: 4/2;
  object-fit: cover;
  position: relative;
  -webkit-filter: brightness(80%);
  filter: brightness(80%);
}
.box-video__btn {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  bottom: initial;
  left: 50%;
  right: initial;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.box-video__btn .svg-text-badge {
  position: relative;
  display: block;
  width: 140px;
  height: 140px;
}
.box-video__btn .svg-text-badge svg:first-child {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  animation: rotating 10s linear infinite;
  z-index: 1;
}
.box-video__btn .svg-text-badge svg:first-child text {
  fill: #ffffff;
  font-size: 45px;
  letter-spacing: 12px;
  font-family: "Inter", "Inter-fallback", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.box-video__btn .svg-text-badge svg:last-child {
  position: absolute;
  top: 50%;
  bottom: initial;
  left: 50%;
  right: initial;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
.box-video__btn:hover {
  background-color: rgba(0, 0, 0, 0.138);
}
