  
.ut-pop-wrapper {
    display: none
}

.ut-pop-wrapper.ut-active {
    display: block;
    position: fixed;
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 111
}

 
.ut-pop-wrapper .ut-pop-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: auto
}

.ut-pop-wrapper .ut-pop-content .ut-pop-body {
    width: 100%;
    max-width: 540px;
    padding: 24px;
    background: var(--text-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
}
.ut-pop-wrapper .ut-pop-content .ut-pop-body .ut-pop-header{
    display: flex;
    flex-wrap: wrap; 
    gap: 8px;
}

.ut-pop-wrapper.ut-thestimonia .ut-pop-content .ut-pop-body.custom-popup-body {
    max-width: 512px;
}

.ut-pop-wrapper.ut-thestimonia .ut-pop-content .ut-pop-body{
    max-width: 960px;
}
.ut-pop-wrapper.ut-thestimonia .ut-pop-content .ut-pop-body .ut-pop-header{
    justify-content: end;
    padding-bottom: 16px;
}
 
  
.ut-model-toggle {
    cursor: pointer
}
.ut-pop-wrapper .ut-pop-close{
    cursor: pointer;
}

.ut-video-wrap {
    width: 100%;
    max-width: 1280px; /* optional max width */
    margin: 0 auto;
    aspect-ratio: 16/9; /* keeps 16:9 ratio */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
  }

  .ut-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* optional small style for fallback link */
  .ut-video-fallback {
    text-align: center;
    margin-top: 8px;
    font-size: 0.95rem;
  }
 
@media screen and (max-width: 767px) {
    .ut-pop-wrapper .ut-pop-content .ut-pop-body {
        padding:24px;
        border-radius: 12px
    }
}