.glass-video-widget {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 340px;
  
    video{
        border-radius: 8px;
        overflow: hidden;
    }
}

.brxe-post-content.single-content .glass-video-widget {
  margin-bottom: 40px;
}

.glass-video-widget video {
  width: 100%;
  height: auto;
  display: block;
}

.glass-video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
}

.glass-video-cover.hidden {
  opacity: 0;
  pointer-events: none;
}

.glass-video-overlay {
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 100%;
  /* backdrop-filter: blur(6px) saturate(180%); */
  cursor: pointer;
  z-index: 2;
overflow:hidden;
}

.glass-video-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.glass-video-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  backdrop-filter: blur(6px);
  z-index: -1;
  filter: url(#glass-distortion);
  -webkit-filter: url(#glass-distortion);
}

.glass-video-overlay svg {
  position: relative;
  z-index: 1;
  left: 5px;
}

@media screen and (max-width: 768px){
    .glass-video-widget {
        min-height: auto;
    }
	.glass-video-overlay {
	    width: 75px;
        height: 75px;
	}
	.glass-video-overlay svg{
	    width: 30px;
	}
}