
body{
    margin: 0;
}

.container {
    width: 180px;
    height: 248px;
    position: relative;
	margin-left: 12px;
}

.element {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}

.element:not(.active) {
    opacity: 0;
}

.initial-active {
    opacity: 1 !important;
    transform: translateX(0);
}

.background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.qr-code {
    width: 155px;
    height: 155px;
    margin-top: 36px;
}

.text {
    font-size: 18px;
    color: #CFF9FF;
    margin-top: 20px;
    letter-spacing: 4px;
    font-weight: bold;
    }

.desc {
    font-size: 16px;
    color: #CFF9FF;
    margin-top: 12px;
    letter-spacing: 3px;
    font-weight: bold;
}

.tip {
    font-size: 12px;
    margin-top: 4px;
    letter-spacing: 1px;
    font-weight: bold;
    color:  #ACA5F8;
}

.x-txt{
	font-size: 8px;
	color: #000;
    font-weight: bold;
}

.active {
    animation: slideIn 0.5s ease-in-out forwards;
}

.remove {
    animation: slideOut 0.5s ease-in-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}