.videoLoopBlock {
  position: relative;
}
.videoLoopBlock .videoWrapper {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
.videoLoopBlock .videoWrapper video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.videoLoopBlock .videoWrapper.volume .audioIcon .icon {
  display: none;
}
.videoLoopBlock .videoWrapper.volume .audioIcon .icon[data-muted="false"] {
  display: block;
}
.videoLoopBlock .videoWrapper .audioIcon {
  height: 50px;
  left: auto;
  position: absolute;
  top: auto;
  width: 50px;
  right: 30px;
  bottom: 30px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background 0.3s 0s ease-out;
  -moz-transition: background 0.3s 0s ease-out;
  -o-transition: background 0.3s 0s ease-out;
  transition: background 0.3s 0s ease-out;
}
.videoLoopBlock .videoWrapper .audioIcon:hover {
  background: rgba(255, 255, 255, 0.8);
}
.videoLoopBlock .videoWrapper .audioIcon:hover .icon path {
  fill: #000;
}
.videoLoopBlock .videoWrapper .audioIcon .icon {
  margin-top: 2px;
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 20px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
}
.videoLoopBlock .videoWrapper .audioIcon .icon[data-muted="false"] {
  display: none;
}
.videoLoopBlock .videoWrapper .audioIcon .icon path {
  fill: #fff;
  -webkit-transition: fill 0.3s 0s ease-out;
  -moz-transition: fill 0.3s 0s ease-out;
  -o-transition: fill 0.3s 0s ease-out;
  transition: fill 0.3s 0s ease-out;
}
/*# sourceMappingURL=video_loop_block.css.map */