:root {

}

.video-plugin-elementor-layers-wrapper {
  /* display: none; */
}

.video-elementor-wrapper-custom {
    height: 100vh;
}
.video-plugin-elementor-layer {
  /* display: none; */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: opacity 100ms ease-in-out;
	opacity: 0;
	height: 0;
	overflow: hidden;
}
.video-plugin-elementor-layer.active {
  opacity: 1;
	height: auto;
	transition: opacity 200ms linear;
}

.video-plugin-button-continue {
	display: inline-block;
	cursor: pointer;
}


.e-hosted-video {
  position: relative;
  /* display: flex;
  justify-content: center;
  margin-inline: auto;
  background-color: black; */
}

.e-hosted-video.theater,
.e-hosted-video.full-screen {
  max-width: initial;
  width: 100%;
}

.e-hosted-video.theater {
  max-height: 90vh;
}

.e-hosted-video.full-screen {
  max-height: 100vh;
}

.e-hosted-video video {
  width: 100%;
  /*height:100vh;*/
}

.video-plugin-elementor-progress-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-plugin-elementor-progress {
	width: 100%;
}
.video-plugin-elementor-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  z-index: 100;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

.video-plugin-elementor-controls::before {
  content: "";
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  width: 100%;
  aspect-ratio: 20 / 1;
  z-index: -1;
  pointer-events: none;
}

.e-hosted-video:hover .video-plugin-elementor-controls,
.e-hosted-video:focus-within .video-plugin-elementor-controls,
.e-hosted-video.paused .video-plugin-elementor-controls {
  opacity: 1;
}

.video-plugin-elementor-controls .video-plugin-elementor-controls-inner,
.video-plugin-elementor-controls .video-plugin-elementor-controls-inner > * {
  display: flex;
  gap: .5em;
  padding: .25em;
  align-items: center;
	justify-content: space-between;
	font-size: calc(60% + 0.8vmin);
}

.video-plugin-elementor-controls .video-plugin-elementor-controls-inner button {
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  height: 1em;
  width: 1em;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: .85;
  transition: opacity 150ms ease-in-out;
}

.video-plugin-elementor-controls .video-plugin-elementor-controls-inner button:hover {
  opacity: 1;
}

.e-hosted-video.paused .pause-icon {
  display: none;
}

.e-hosted-video:not(.paused) .play-icon {
  display: none;
}

.e-hosted-video.theater .tall {
  display: none;
}

.e-hosted-video:not(.theater) .wide {
  display: none;
}

.e-hosted-video.full-screen .open {
  display: none;
}

.e-hosted-video:not(.full-screen) .close {
  display: none;
}

.volume-high-icon,
.volume-low-icon,
.volume-muted-icon {
  display: none;
}

.e-hosted-video[data-volume-level="high"] .volume-high-icon {
  display: block;
}

.e-hosted-video[data-volume-level="low"] .volume-low-icon {
  display: block;
}

.e-hosted-video[data-volume-level="muted"] .volume-muted-icon {
  display: block;
}

.volume-container {
  display: flex;
  align-items: center;
}

.volume-slider {
  width: 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: width 150ms ease-in-out, transform 150ms ease-in-out;
}

.volume-container:hover .volume-slider,
.volume-slider:focus-within {
  width: 100px;
  transform: scaleX(1);
}

.duration-container {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-grow: 1;
}

.e-hosted-video.captions .captions-btn {
  border-bottom: 3px solid red;
}

.video-plugin-elementor-controls .video-plugin-elementor-controls-inner button.wide-btn {
  width: 50px;
}

.video-plugin-elementor-progress-wrapper {
  height: 7px;
	padding: .25rem;
  cursor: pointer;
}

.sound-btn-container {
	display: none;
	bottom: 100px;
	right: 15px;
	/* display: block; */
	position: absolute;
	cursor: pointer;
	z-index: 99999;
}
.toggle-sound svg {
  width: 25px;
  height: 25px;
}

.video-plugin-elementor-portrait {
  display: none;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #eee;
  z-index: 1000000;
  overflow: hidden;
}
.video-plugin-elementor-portrait-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin:-60px 0 0 -60px;
  transform: rotate(45deg);
  -webkit-animation: rotate-90-cw 4s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s infinite;
          animation: rotate-90-cw 4s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s infinite;
}

.video-plugin-elementor-portrait-text {
    position: absolute;
font-size: 1.5rem;
text-align: center;
top: 65%;
left: 50%;
transform: translate(-50%, -50%);
}
/* only when orientation is in portrait mode */
@media all and (orientation:portrait) {
  .video-plugin-elementor-portrait {
    display: block;
  }
}

 @-webkit-keyframes rotate-90-cw {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  20% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
@keyframes rotate-90-cw {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  20% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

/*
.video-plugin-button-continue.elementor-size-xs svg {
  max-width: 100px;
  max-height: 100px;
 }
 .video-plugin-button-continue.elementor-size-md svg {
  font-size:16px;
  padding:15px 30px;
  border-radius:4px
 }
 .video-plugin-button-continue.elementor-size-lg svg {
  font-size:18px;
  padding:20px 40px;
  border-radius:5px
 }
 .video-plugin-button-continue.elementor-size-xl svg {
  font-size:20px;
  padding:25px 50px;
  border-radius:6px
 }*/