.confirm {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5500;
}

	.confirm-background {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.confirm-content {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 394px;
		height: 100px;
		padding-left: 52px;
		margin-top: -50px;
		margin-left: -197px;
		background-color: #ffffff;
		box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
		-webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
		-ms-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
		-o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
		z-index: 5000;
	}

		.confirm-left {
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			width: 52px;
			background-color: #7d8c8c;
			background-image: url(../images/confirm/confirm-success.png);
			background-position: center;
			background-repeat: no-repeat;
		}

		.confirm-right {
			position: relative;
			float: left;
			width: 342px;
			height: 100.0%;
			padding: 8px 20px 40px;
		}

			.confirm-right p {
				position: relative;
				float: left;
				width: 100.0%;
				height: 100.0%;
				margin: 0;
				line-height: 19px;
				font-size: 11px;
				font-weight: 300;
				text-transform: uppercase;
				color: #7d8c8c;
			}

			.confirm-footer {
				position: absolute;
				left: 20px;
				right: 20px;
				bottom: 8px;
			}

				.confirm-footer input[type="submit"] {
					position: relative;
					float: right;
					height: 24px;
					padding: 5px;
					border: 0;
					margin: 0 0 0 5px;
					border-radius: 0;
					-webkit-border-radius: 0;
					-moz-border-radius: 0;
					font-size: 12px;
					font-weight: 300;
					color: #ffffff;
					appearance: none;
					-webkit-appearance: none;
					-moz-appearance: none;
					cursor: pointer;
				}

				.confirm-footer input[type="submit"][name="confirm_accept"] {
					background-color: #7d8c8c;
				}

				.confirm-footer input[type="submit"][name="confirm_cancel"] {
					background-color: #bec3c8;
				}