/* lightbox */
.colony_lightbox {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--container-padding);
}

.colony_modal .background {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
}

.colony_modal .content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    z-index: 1001;
    text-align: center;
    padding: var(--space-sm);
    background: var(--white);
    color: var(--black);
}

.colony_modal .img_dynamic {
    height: 100%;
    width: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    margin: auto;
}

.colony_modal .video_dynamic {
    width: 1000px;
}

/* overlays */
.colony_overlay {
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

/* video */
.colony_video_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.colony_video_bg_16x9 {
    width: 100vw;
    height: 56.25vw;
    min-height: 102vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.colony_video_bg_9x16 {
    width: 100vw;
    height: 200vw;
    min-height: 56.25vh;
    min-width: 102vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}








