.popup-survey-title {

}

.popup-survey-description {
	margin-bottom: 10px;
}

.popup-survey-question {
	margin-top: 10px;
	margin-bottom: 10px;
}

.popup-survey-dont-show-again {
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	cursor: pointer;
	font-size: 14px;
}

.popup-survey-dont-show-again:hover {
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	cursor: pointer;
	font-size: 14px;
}

.popup-survey-meter {
	height: 5px; /* Can be anything */
	position: relative;
	background: rgba(255,255,255,0.3);
}
.popup-survey-meter > span {
	display: block;
	height: 100%;
	background-color: rgb(43,194,83);
	position: relative;
	overflow: hidden;
}

.wp-popup-survey-checkbox {
	display: inline-block;
	cursor: pointer;
	font-size: 13px;
	margin-right: 10px;
	line-height: 18px;
}
input[type=checkbox].wp-popup-survey {
	display: none;
}
.wp-popup-survey-checkbox:before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	color: #f3f3f3;
	text-align: center;
	border-radius: 3px;
}
input[type=checkbox]:checked + .wp-popup-survey-checkbox:before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	font-size: 15px;
}

.wp-popup-survey-radio {
	display: inline-block;
	cursor: pointer;
	font-size: 13px;
	margin-right: 10px;
	line-height: 18px;
}
input[type=radio].wp-popup-survey {
	display: none;
}
.wp-popup-survey-radio:before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	color: #f3f3f3;
	text-align: center;
	font-size: 20px;
	border-radius: 10px;
}
input[type=radio]:checked + .wp-popup-survey-radio:before {
	content: "\2022";
}

.popup-survey-textarea {
	display: block;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555555;
	background-color: #ffffff;
	background-image: none;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.popup-survey-textarea:focus {
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

input[disabled].popup-survey-textarea {
	background-color: #eeeeee;
	border-color: #ddd;
	cursor: not-allowed;
}

.reveal-modal-bg {
	position: fixed;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,.9);
	z-index: 1000000;
	display: none;
	top: 0;
	left: 0;
}

.popup_survey_Modal {
	padding: 10px 40px 14px;
	border-radius: 10px;
	color: #fff;
}

.reveal-modal {
	visibility: hidden;
	top: 100px;
	left: 50%;
	margin-left: -300px;
	width: 520px;
	position: absolute;
	z-index: 1000001;
}

.reveal-modal.large {
	width: 600px;
	margin-left: -340px;
}

@media (max-width: 600px) {
	.reveal-modal {
		width: 80%;
		margin-left: 0px;
		left: 10%;
	}

	.reveal-modal.large {
		width: 80%;
		margin-left: 0px;
	}
}

.reveal-modal .close-reveal-modal {

}

.popup-survey-btn {
	display: inline-block;
	margin-bottom: 0;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	white-space: nowrap;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.popup-survey-btn:focus, .popup-survey-btn:active:focus, .popup-survey-btn.active:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.popup-survey-btn:hover, .popup-survey-btn:focus {
	color: #333333;
	text-decoration: none;
}
.popup-survey-btn:active, .popup-survey-btn.active {
	outline: 0;
	background-image: none;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.popup-survey-btn.disabled, .popup-survey-btn[disabled], fieldset[disabled] .popup-survey-btn {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.popup-survey-btn-default {
	color: #333333;
	background-color: #ffffff;
	border-color: #cccccc;
}
.popup-survey-btn-default:hover, .popup-survey-btn-default:focus, .popup-survey-btn-default:active, .popup-survey-btn-default.active, .open > .dropdown-toggle.popup-survey-btn-default {
	color: #333333;
	background-color: #e6e6e6;
	border-color: #adadad;
}
.popup-survey-btn-default:active, .popup-survey-btn-default.active, .open > .dropdown-toggle.popup-survey-btn-default {
	background-image: none;
}
.popup-survey-btn-default.disabled, .popup-survey-btn-default[disabled], fieldset[disabled] .popup-survey-btn-default, .popup-survey-btn-default.disabled:hover, .popup-survey-btn-default[disabled]:hover, fieldset[disabled] .popup-survey-btn-default:hover, .popup-survey-btn-default.disabled:focus, .popup-survey-btn-default[disabled]:focus, fieldset[disabled] .popup-survey-btn-default:focus, .popup-survey-btn-default.disabled:active, .popup-survey-btn-default[disabled]:active, fieldset[disabled] .popup-survey-btn-default:active, .popup-survey-btn-default.disabled.active, .popup-survey-btn-default[disabled].active, fieldset[disabled] .popup-survey-btn-default.active {
	background-color: #ffffff;
	border-color: #cccccc;
}
.popup-survey-btn-default .badge {
	color: #ffffff;
	background-color: #333333;
}

.popup-survey-btn-success:hover, .popup-survey-btn-success:focus, .popup-survey-btn-success:active, .popup-survey-btn-success.active, .open > .dropdown-toggle.popup-survey-btn-success {
	color: #ffffff;
}
.popup-survey-btn-success:active, .popup-survey-btn-success.active, .open > .dropdown-toggle.popup-survey-btn-success {
	background-image: none;
}

.popup-survey-btn-sm {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}
.popup-survey-btn-xs {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}
