#nxt-right-click-disable-alert {
			position: fixed;
			display: inline-flex;
			visibility: hidden;
			overflow: hidden;
			min-width: 250px;
			transform: translateX(calc(100% + 50px));
			background-color: #fff;
			align-items: center;
			border-radius: 8px;
			padding: 20px 30px;
			z-index: 999;
			box-shadow: 0 6px 20px -5px rgb(0 0 0 / 20%);
			transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
		}
		#nxt-right-click-disable-alert .nxt-disable-inner {
			position: relative;
			display: inline-flex;
			align-items: center;
		}
		#nxt-right-click-disable-alert .nxt-disable-inner::before {
			content: "";
			display: inline-flex;
			align-items: center;
			justify-content: center;
			color: #fff;
			width: 35px;
			height: 35px;
			border-radius: 25px;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 512' fill='%23222'%3E%3Cpath d='M48 80a48 48 0 1 1 96 0A48 48 0 1 1 48 80zM0 224c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V448h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64V256H32c-17.7 0-32-14.3-32-32z'/%3E%3C/svg%3E");
			background-repeat: no-repeat no-repeat;
			background-position: center center;
			background-size: 8px;
			background-color: #313131;
		}
		#nxt-right-click-disable-alert .nxt-alert-content{
			display: flex;
			flex-direction: column;
			margin: 0 20px;
		}
		.nxt-alert-content .nxt-alert-title {
			font-size: 16px;
			font-weight: 600;
			color: #333;
		}
		.nxt-alert-content .nxt-alert-message {
			font-size: 14px;
			font-weight: 400;
			color: #666666;
		}
		#nxt-right-click-disable-alert.active {
			visibility:visible;
			transform: translateX(0%);
		}
		#nxt-right-click-disable-alert .nxt-time-progress {
			position: absolute;
			bottom: 0;
			left: 0;
			height: 3px;
			width: 100%;
		}
		#nxt-right-click-disable-alert .nxt-time-progress::before{
			content: "";
			position: absolute;
			bottom: 0;
			right: 0;
			height: 100%;
			width: 100%;
			background-color: rgb(255, 139, 0);
		}
		@keyframes nxt_time_progress {
			100% {
				right: 100%;
			}
		}body * :not(input):not(textarea){
				user-select:none !important;
				-khtml-user-select:none !important;
				-ms-user-select: none !important;
				-webkit-touch-callout: none !important;
				-webkit-user-select: none !important;
				-moz-user-select:none !important;
			}.nxt-time-progress.active::before {
					animation: nxt_time_progress 3000ms linear forwards;
				}#nxt-right-click-disable-alert { top: 6%; right: 3%; }