:root{
    --mm-brand: #fa2a59;
    --mm-radius: 0px;
}

/* Trigger */
.mm-trigger{
    position: relative;
    border: 0;
    background: transparent!important;
    padding: 0;
    cursor: pointer;
    line-height: 0;
    width: 96px;
    height: 98px;
}
.mm-trigger:hover {
    background: transparent!important;
}
.mm-trigger img{
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--mm-radius);
}

/* Morph layer */
.mm-morph{
    position: fixed;
    left: 0; top: 0;
    width: 0; height: 0;
    background: var(--mm-brand);
    border-radius: var(--mm-radius);
    z-index: 999999999;
    display: none;
    overflow: hidden;
    will-change: transform, width, height, left, top, border-radius;
    transform-origin: 0 0;
}
.mm-morph.is-active{ display: block; }

/* Video */
.mm-video{
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 200ms linear;
}
.mm-video.is-visible{ opacity: 1; }

.mm-video iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Close */
.mm-close{
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,.18)!important;
    color: #fff;
    z-index: 1000000;
    display: none;
    padding: 0 !important;
}
.mm-close:hover{
    background: #fa2a59;
}
.mm-morph.is-active .mm-close{
    display: inline-grid;
    place-items: center;
}
