
.dd-password-protect.et_pb_section {
	background-color: inherit;
}

.dd-password-protect > .et_pb_row {
	max-width: 300px;
	padding: 20px;
	border-radius: 10px;
	border-style: dashed;
	border-width: 1px;
	box-shadow: 0 20px 0 -5px rgba(118, 164, 197, .1);
}

.dd-password-protect .et-pb-icon {
	font-size: 48px;
}

.dd-password-protect .dd-password, .dd-password-protect .et_pb_blurb_content p, .dd-password-protect h4 {
	margin-bottom: 15px;
}

.dd-password-protect .dd-password {
	border-radius: 7px;
	padding: 10px;
	width: 100%;
}

.dd-password-protect button {
	border: 0;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	padding: 10px 20px;
}

.dd-password-protect button:hover {
	opacity: .8;
}

.dd-password-error {
	color: red;
	font-size: 14px;
	line-height: 1.4em;
}

.dd-password.dd-error {
	border-color: red !important;
	color: red;
	animation: shake .5s linear;
}

@keyframes shake {
	10%, 40% {
		transform: translateX(-10px);
	}
	
	25%, 60% {
		transform: translateX(10px);
	}
	
	75% {
		transform: translateX(-5px);
	}
	
	90% {
		transform: translateX(5px);
	}
	
	0%, 100% {
		transform: translateX(0);
	}
}
