.sifency-video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center
}

.sifency-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.sifency-video-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
    gap: 10px
}

.sifency-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s
}

.sifency-video-modal.is-active {
    display: flex !important;
    opacity: 1
}

.sifency-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    cursor: pointer
}

.sifency-video-modal-container {
    position: relative;
    width: 90%;
    max-width: 1320px;
    z-index: 10000
}

.sifency-video-modal-content {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden
}

.sifency-video-modal-content iframe,
.sifency-video-modal-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none
}