.mb-video-section {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.mb-video-section.video-is-playing .overlay-content-wrapper {
  display: none;
}
.mb-video-section.video-is-playing .custom-cursor svg {
  display: none;
}
.mb-video-section.video-is-playing .custom-cursor .x-wrapper {
  display: block;
}
.mb-video-section video {
  margin-bottom: 0;
}
.mb-video-section .overlay-content-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}
.mb-video-section .custom-cursor {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  z-index: 10;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
}
.mb-video-section .custom-cursor .x-wrapper {
  display: none;
  width: 20px;
}
.mb-video-section .custom-cursor .x-wrapper div {
  position: absolute;
}
.mb-video-section .custom-cursor .x-wrapper div.rr {
  transform: rotate(45deg);
}
.mb-video-section .custom-cursor .x-wrapper div.rl {
  transform: rotate(-45deg);
}
.mb-video-section .custom-cursor .x-wrapper div:before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #000000;
}
