.animation {
	display: none;
    position: fixed;
    background-color: white;
    padding: var(--margin);
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 10;
	cursor: pointer;
}

.animation.is-animated {
	display: block;
}

.animation.is-hidden {
    pointer-events: none;
    opacity: 0;
}

.animation > svg {
    width: calc(100% - var(--margin-x2));
    height: auto;
}

.animation > svg > #rect {
    transform: translate(-100%);
}