#tris-popup-overlay {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tris-popup-content {
    background: transparent;
    padding: 20px;
    margin: 80px auto;
    position: relative;
    border-radius: 8px;
    width: 50%;
    max-width: 1600px;
    margin: 0;
}

.tris-popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1001;
    width: 35px;
    height: 35px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    padding: 0;
}

.tris-popup-close:hover {
    background: #333;
    color: #fff;
}

.tris-popup-content video {
    margin-bottom: 0px!important;
}

@media (max-width: 768px) {
    .tris-popup-content {
        width: 100%;
    }
}
