emilia-launcher *, emilia-launcher {
    transition: 0.5s all;
}
emilia-launcher {
    background: #25D366;
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    cursor: pointer;
    border-radius: 100%;
    display: block;
    box-shadow: 0 3px 10px 0 #0000004f;
}
emilia-launcher > svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}
emilia-launcher:hover {
    transform: scale(1.1);
}
emilia-launcher::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 59px;
    height: 59px;
    background: #128C7E;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 100%;
    opacity: 0.15;
    animation: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
emilia-launcher.ok {
    transform: translate(-50%, -50%) scale(0.01);
    animation: none;
    pointer-events: none;
    opacity: 0;
}
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}
emilia-container {
    display: block;
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 350px;
    height: 0px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
    pointer-events: none;
    transform: translateY(101%);
    transition: 0.3s all;
    box-shadow: 0 0 15px 0 #0000004a;
}
emilia-container.ok {
    pointer-events: all;
    transform: translateY(0%);
	height: 550px;
}
emilia-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
	background: #128C7E;
}
emilia-container close {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    top: 8px;
    right: 8px;
    position: absolute;
}
emilia-container close::before, emilia-container close::after {
    content: '';
    display: block;
    position: absolute;
    top: 20%;
    left: calc(50% - 1px);
    width: 2px;
    height: 60%;
    background-color: #fff;
}
emilia-container close::before {
    transform: rotate(45deg);
}
emilia-container close::after {
    transform: rotate(-45deg);
}
emilia-container close:hover {
    filter: brightness(1.3);
}
@media screen and (max-width: 800px) {
	emilia-container {
		width: 100vw;
		height: 100vh!important;
		border-radius: 0;
		right: 0;
	}
}