#wx-tool {
	background: rgba(233, 68, 110, 0.33);
	position: relative;
	
	h3 {
		text-align: center;
	}
	
	.wx-step {
		display: flex;
		flex-direction: column;
		text-align: center;
		
		.wx-options {
			display: flex;
			flex-direction: row;
			justify-content: center;
			
			.wx-option {
				&.active {
					background: #e9446e;
					color: white;
				}
			}
		}
	}
	
	#wx-footer {
		display: flex;
		justify-content: space-between;
		margin-top: 15px;
		
		button {
			padding: 10px 20px;
			cursor: pointer;
		}
	}
	
	#wx-loading-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.6);
		display: flex;
		justify-content: center;
		align-items: center;
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.3s;
		z-index: 10;
		
		&.active {
			opacity: 1;
			pointer-events: all;
		}
		
		svg {
			animation: spin 1s linear infinite;
			color: #0073aa;
		}
		
	}
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}