/**
 * import-metabox-edit.css
 *
 * @since	1.2.0
 * @package feedzy-rss-feeds-pro
 */
.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #555;
	background-color: #fff;
	background-image: none;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	font-size: 14px;
	line-height: 1.42857143;
	-webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
	opacity: 1;
	color: #999;
}

.form-control:-ms-input-placeholder {
	color: #999;
}

.form-control::-webkit-input-placeholder {
	color: #999;
}

.form-control::-ms-expand {
	border: 0;
	background-color: transparent;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	opacity: 1;
	background-color: #eee;
}

.form-control[disabled],
fieldset[disabled] .form-control {
	cursor: not-allowed;
}

textarea.form-control {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
	input[type="date"].form-control,
	input[type="time"].form-control,
	input[type="datetime-local"].form-control,
	input[type="month"].form-control {
		line-height: 34px;
	}

	input[type="date"].input-sm,
	input[type="time"].input-sm,
	input[type="datetime-local"].input-sm,
	input[type="month"].input-sm,
	.input-group-sm input[type="date"],
	.input-group-sm input[type="time"],
	.input-group-sm input[type="datetime-local"],
	.input-group-sm input[type="month"] {
		line-height: 30px;
	}

	input[type="date"].input-lg,
	input[type="time"].input-lg,
	input[type="datetime-local"].input-lg,
	input[type="month"].input-lg,
	.input-group-lg input[type="date"],
	.input-group-lg input[type="time"],
	.input-group-lg input[type="datetime-local"],
	.input-group-lg input[type="month"] {
		line-height: 46px;
	}
}

.form-group {
	margin-bottom: 15px;
}

.radio,
.checkbox {
	display: block;
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
}

.radio label,
.checkbox label {
	min-height: 20px;
	margin-bottom: 0;
	padding-left: 20px;
	font-weight: normal;
	cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
	position: absolute;
	margin-top: 4px \9;
	margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
	margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
	display: inline-block;
	position: relative;
	margin-bottom: 0;
	padding-left: 20px;
	font-weight: normal;
	vertical-align: middle;
	cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
	margin-top: 0;
	margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
	cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
	cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
	cursor: not-allowed;
}

.form-control-static {
	min-height: 34px;
	margin-bottom: 0;
	padding-top: 7px;
	padding-bottom: 7px;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
	padding-right: 0;
	padding-left: 0;
}

.input-sm {
	height: 30px;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
	line-height: 1.5;
}

select.input-sm {
	height: 30px;
	line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
	height: auto;
}

.form-group-sm .form-control {
	height: 30px;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
	line-height: 1.5;
}

.form-group-sm select.form-control {
	height: 30px;
	line-height: 30px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
	height: auto;
}

.form-group-sm .form-control-static {
	height: 30px;
	min-height: 32px;
	padding: 6px 10px;
	font-size: 12px;
	line-height: 1.5;
}

.input-lg {
	height: 46px;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 18px;
	line-height: 1.3333333;
}

select.input-lg {
	height: 46px;
	line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
	height: auto;
}

.form-group-lg .form-control {
	height: 46px;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 18px;
	line-height: 1.3333333;
}

.form-group-lg select.form-control {
	height: 46px;
	line-height: 46px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
	height: auto;
}

.form-group-lg .form-control-static {
	height: 46px;
	min-height: 38px;
	padding: 11px 16px;
	font-size: 18px;
	line-height: 1.3333333;
}

.has-feedback {
	position: relative;
}

.has-feedback .form-control {
	padding-right: 42.5px;
}

.form-control-feedback {
	display: block;
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
	width: 46px;
	height: 46px;
	line-height: 46px;
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
	color: #3c763d;
}

.has-success .form-control {
	border-color: #3c763d;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
	border-color: #2b542c;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
	border-color: #3c763d;
	color: #3c763d;
	background-color: #dff0d8;
}

.has-success .form-control-feedback {
	color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
	color: #8a6d3b;
}

.has-warning .form-control {
	border-color: #8a6d3b;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
	border-color: #66512c;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
	border-color: #8a6d3b;
	color: #8a6d3b;
	background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
	color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
	color: #a94442;
}

.has-error .form-control {
	border-color: #a94442;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
	border-color: #843534;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
	border-color: #a94442;
	color: #a94442;
	background-color: #f2dede;
}

.has-error .form-control-feedback {
	color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
	top: 25px;
}

.has-feedback label.feedzy-sr-only ~ .form-control-feedback {
	top: 0;
}

.help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #737373;
}

@media (min-width: 768px) {
	.form-inline .form-group {
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle;
	}

	.form-inline .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle;
	}

	.form-inline .form-control-static {
		display: inline-block;
	}

	.form-inline .input-group {
		display: inline-table;
		vertical-align: middle;
	}

	.form-inline .input-group .input-group-addon,
	.form-inline .input-group .input-group-btn,
	.form-inline .input-group .form-control {
		width: auto;
	}

	.form-inline .input-group > .form-control {
		width: 100%;
	}

	.form-inline .control-label {
		margin-bottom: 0;
		vertical-align: middle;
	}

	.form-inline .radio,
	.form-inline .checkbox {
		display: inline-block;
		margin-top: 0;
		margin-bottom: 0;
		vertical-align: middle;
	}

	.form-inline .radio label,
	.form-inline .checkbox label {
		padding-left: 0;
	}

	.form-inline .radio input[type="radio"],
	.form-inline .checkbox input[type="checkbox"] {
		position: relative;
		margin-left: 0;
	}

	.form-inline .has-feedback .form-control-feedback {
		top: 0;
	}
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
	min-height: 27px;
}

.form-horizontal .form-group {
	margin-right: -15px;
	margin-left: -15px;
}

@media (min-width: 768px) {
	.form-horizontal .control-label {
		margin-bottom: 0;
		padding-top: 7px;
		text-align: right;
	}
}

.form-horizontal .has-feedback .form-control-feedback {
	right: 15px;
}

@media (min-width: 768px) {
	.form-horizontal .form-group-lg .control-label {
		padding-top: 11px;
		font-size: 18px;
	}
}

@media (min-width: 768px) {
	.form-horizontal .form-group-sm .control-label {
		padding-top: 6px;
		font-size: 12px;
	}
}

.btn {
	display: inline-block;
	margin-bottom: 0;
	padding: 6px 12px;
	border: 1px solid transparent;
	border-radius: 4px;
	background-image: none;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
	color: #333;
	text-decoration: none;
}

.btn:active,
.btn.active {
	outline: 0;
	background-image: none;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	opacity: 0.65;
	box-shadow: none;
	cursor: not-allowed;

	filter: alpha(opacity=65);
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-default {
	border-color: #ccc;
	color: #333;
	background-color: #fff;
}

.btn-default:focus,
.btn-default.focus {
	border-color: #8c8c8c;
	color: #333;
	background-color: #e6e6e6;
}

.btn-default:hover {
	border-color: #adadad;
	color: #333;
	background-color: #e6e6e6;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
	border-color: #adadad;
	color: #333;
	background-color: #e6e6e6;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
	border-color: #8c8c8c;
	color: #333;
	background-color: #d4d4d4;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
	background-image: none;
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
	border-color: #ccc;
	background-color: #fff;
}

.btn-default .badge {
	color: #fff;
	background-color: #333;
}

.btn-primary {
	border-color: #2e6da4;
	color: #fff;
	background-color: #337ab7;
}

.btn-primary:focus,
.btn-primary.focus {
	border-color: #122b40;
	color: #fff;
	background-color: #286090;
}

.btn-primary:hover {
	border-color: #204d74;
	color: #fff;
	background-color: #286090;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
	border-color: #204d74;
	color: #fff;
	background-color: #286090;
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
	border-color: #122b40;
	color: #fff;
	background-color: #204d74;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
	background-image: none;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
	border-color: #2e6da4;
	background-color: #337ab7;
}

.btn-primary .badge {
	color: #337ab7;
	background-color: #fff;
}

.btn-success {
	border-color: #4cae4c;
	color: #fff;
	background-color: #5cb85c;
}

.btn-success:focus,
.btn-success.focus {
	border-color: #255625;
	color: #fff;
	background-color: #449d44;
}

.btn-success:hover {
	border-color: #398439;
	color: #fff;
	background-color: #449d44;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
	border-color: #398439;
	color: #fff;
	background-color: #449d44;
}

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
	border-color: #255625;
	color: #fff;
	background-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
	background-image: none;
}

.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
	border-color: #4cae4c;
	background-color: #5cb85c;
}

.btn-success .badge {
	color: #5cb85c;
	background-color: #fff;
}

.btn-info {
	border-color: #46b8da;
	color: #fff;
	background-color: #5bc0de;
}

.btn-info:focus,
.btn-info.focus {
	border-color: #1b6d85;
	color: #fff;
	background-color: #31b0d5;
}

.btn-info:hover {
	border-color: #269abc;
	color: #fff;
	background-color: #31b0d5;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
	border-color: #269abc;
	color: #fff;
	background-color: #31b0d5;
}

.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
	border-color: #1b6d85;
	color: #fff;
	background-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
	background-image: none;
}

.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
	border-color: #46b8da;
	background-color: #5bc0de;
}

.btn-info .badge {
	color: #5bc0de;
	background-color: #fff;
}

.btn-warning {
	border-color: #eea236;
	color: #fff;
	background-color: #f0ad4e;
}

.btn-warning:focus,
.btn-warning.focus {
	border-color: #985f0d;
	color: #fff;
	background-color: #ec971f;
}

.btn-warning:hover {
	border-color: #d58512;
	color: #fff;
	background-color: #ec971f;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
	border-color: #d58512;
	color: #fff;
	background-color: #ec971f;
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
	border-color: #985f0d;
	color: #fff;
	background-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
	background-image: none;
}

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
	border-color: #eea236;
	background-color: #f0ad4e;
}

.btn-warning .badge {
	color: #f0ad4e;
	background-color: #fff;
}

.btn-danger {
	border-color: #d43f3a;
	color: #fff;
	background-color: #d9534f;
}

.btn-danger:focus,
.btn-danger.focus {
	border-color: #761c19;
	color: #fff;
	background-color: #c9302c;
}

.btn-danger:hover {
	border-color: #ac2925;
	color: #fff;
	background-color: #c9302c;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
	border-color: #ac2925;
	color: #fff;
	background-color: #c9302c;
}

.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
	border-color: #761c19;
	color: #fff;
	background-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
	background-image: none;
}

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
	border-color: #d43f3a;
	background-color: #d9534f;
}

.btn-danger .badge {
	color: #d9534f;
	background-color: #fff;
}

.btn-link {
	border-radius: 0;
	color: #337ab7;
	font-weight: normal;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
	background-color: transparent;
	box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
	color: #23527c;
	background-color: transparent;
	text-decoration: underline;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
	color: #777;
	text-decoration: none;
}

.btn-lg,
.btn-group-lg > .btn {
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 18px;
	line-height: 1.3333333;
}

.btn-sm,
.btn-group-sm > .btn {
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
	line-height: 1.5;
}

.btn-xs,
.btn-group-xs > .btn {
	padding: 1px 5px;
	border-radius: 3px;
	font-size: 12px;
	line-height: 1.5;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-block + .btn-block {
	margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
	width: 100%;
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 4px dashed;
	border-top: 4px solid \9;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	vertical-align: middle;
}

.dropup,
.dropdown {
	position: relative;
}

.dropdown-toggle:focus {
	outline: 0;
}

.dropdown-menu {
	display: none;
	float: left;
	position: absolute;
	z-index: 1000;
	top: 40px;
	left: 0;
	min-width: 160px;
	/* fallback if 100% not supported */
	min-width: 100%;
	margin: 2px 0 0;
	padding: 5px 0;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	background-color: #fff;
	background-clip: padding-box;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	font-size: 14px;
	text-align: left;
	list-style: none;
}

.dropdown-menu.pull-right {
	right: 0;
	left: auto;
}

.dropdown-menu .divider {
	overflow: hidden;
	height: 1px;
	margin: 9px 0;
	background-color: #e5e5e5;
}

.dropdown-menu > li > a {
	display: block;
	clear: both;
	padding: 3px 20px;
	color: #333;
	font-weight: normal;
	line-height: 1.42857143;
	white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	color: #262626;
	background-color: #f5f5f5;
	text-decoration: none;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	outline: 0;
	color: #fff;
	background-color: #337ab7;
	text-decoration: none;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	color: #777;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	background-color: transparent;
	background-image: none;
	text-decoration: none;
	cursor: not-allowed;

	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.open > .dropdown-menu {
	display: block;
	z-index: 99999999;
}

.open > a {
	outline: 0;
}

.dropdown-menu-right {
	right: 0;
	left: auto;
}

.dropdown-menu-left {
	right: auto;
	left: 0;
}

.dropdown-header {
	display: block;
	padding: 3px 20px;
	color: #777;
	font-size: 12px;
	line-height: 1.42857143;
	white-space: nowrap;
}

.dropdown-backdrop {
	position: fixed;
	z-index: 990;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.pull-right > .dropdown-menu {
	right: 0;
	left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
	border-top: 0;
	border-bottom: 4px dashed;
	border-bottom: 4px solid \9;
	content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 2px;
}

@media (min-width: 768px) {
	.navbar-right .dropdown-menu {
		right: 0;
		left: auto;
	}

	.navbar-right .dropdown-menu-left {
		right: auto;
		left: 0;
	}
}

.btn-group,
.btn-group-vertical {
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
	float: left;
	position: relative;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
	z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
	margin-left: -1px;
}

.btn-toolbar {
	margin-left: -5px;
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
	float: left;
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
	margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0;
}

.btn-group > .btn:first-child {
	margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
	float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
	border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
	outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
	padding-right: 8px;
	padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
	padding-right: 12px;
	padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
	box-shadow: none;
}

.btn .caret {
	margin-left: 0;
}

.btn-lg .caret {
	border-width: 5px 5px 0;
	border-bottom-width: 0;
}

.dropup .btn-lg .caret {
	border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
	display: block;
	float: none;
	width: 100%;
	max-width: 100%;
}

.btn-group-vertical > .btn-group > .btn {
	float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
	margin-top: -1px;
	margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
	border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
	border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.btn-group-justified {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-collapse: separate;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
	display: table-cell;
	float: none;
	width: 1%;
}

.btn-group-justified > .btn-group .btn {
	width: 100%;
}

.btn-group-justified > .btn-group .dropdown-menu {
	left: auto;
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
	clip: rect(0, 0, 0, 0);
	position: absolute;
	pointer-events: none;
}

.input-group {
	display: table;
	position: relative;
	border-collapse: separate;
}

.input-group[class*="col-"] {
	float: none;
	padding-right: 0;
	padding-left: 0;
}

.input-group .form-control {
	float: left;
	position: relative;
	z-index: 2;
	width: 100%;
	margin-bottom: 0;
}

.input-group .form-control:focus {
	z-index: 3;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
	height: 46px;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 18px;
	line-height: 1.3333333;
}

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
	height: 46px;
	line-height: 46px;
}

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
	height: auto;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
	height: 30px;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
	line-height: 1.5;
}

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
	height: 30px;
	line-height: 30px;
}

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
	height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
	display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
	border-radius: 0;
}

.input-group-addon,
.input-group-btn {
	width: 1%;
	vertical-align: top;
	white-space: nowrap;
}

.input-group-addon {
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #555;
	background-color: #eee;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	text-align: center;
}

.input-group-addon.input-sm {
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
}

.input-group-addon.input-lg {
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 18px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
	margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
	border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group-addon:last-child {
	border-left: 0;
}

.input-group-btn {
	position: relative;
	font-size: 0;
	white-space: nowrap;
}

.input-group-btn > .btn {
	position: relative;
}

.input-group-btn > .btn + .btn {
	margin-left: -1px;
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
	z-index: 2;
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
	margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
	z-index: 2;
	margin-left: -1px;
}


.label_description,
.form_item {
	margin-top: 8px;
	margin-bottom: 8px;
}

.label_description h4 {
	text-align: center;
	text-transform: uppercase;
}

a.dropdown-item,
span.dropdown-item[disabled] {
	display: block;
	padding: 5px 8px;
	color: #f35b3f;
	text-align: center;
	text-decoration: none;
}

span.dropdown-item[disabled] {
	color: #808080;
}

a:hover.dropdown-item,
a:focus.dropdown-item {
	color: #f89c8b;
	background-color: #f8f8f8;
}

.btn.btn-add-fields {
	background-color: #099bb2;
}

.btn.btn-add-fields:hover {
	background-color: #14b2cc;
}

.btn.btn-remove-fields {
	color: #f35b3f;
}

.btn.btn-remove-fields:hover {
	color: #f89c8b;
}

.btn > span.dashicons {
	vertical-align: middle;
}

.f1 {
	padding: 30px;
	padding-top: 10px;
	border-radius: 4px;
	background: #fff;
}

.f1 h3 {
	margin-top: 0;
	margin-bottom: 10px;
	text-transform: uppercase;
	background-color: #f1f1f1;
	padding: 5px;
    border-radius: 5px;
    text-indent: 1%;
}

.f1 h3:nth-of-type(n+2) {
	margin-top: 30px;
}

.f1-steps {
	overflow: hidden;
	position: relative;
	margin-top: 20px;
}

.f1-progress {
	position: absolute;
	top: 24px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ddd;
}

.f1-progress-line {
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	background: #f35b3f;
}

.f1-step {
	display: inline-block;
	position: relative;
	width: calc(100%/3 - 10px);
	width: -webkit-calc(100%/3 - 10px);
	text-align: center;
}

.f1-step-icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-top: 4px;
	border-radius: 50%;
	color: #fff;
	background: #ddd;
	font-size: 16px;
	line-height: 40px;
}

.f1-step-icon span {
	display: inline-block;
	width: 18px;
	height: 18px;
	padding: 11px;
	font-size: 18px;
}

.f1-step.activated .f1-step-icon span {
	width: 20px;
	height: 20px;
	margin-top: -2px;
	margin-left: -1px;
	padding: 12px;
	font-size: 20px;
}

.f1-step.active .f1-step-icon span {
	width: 24px;
	height: 24px;
	padding: 12px;
	font-size: 24px;
}

.f1-step.activated .f1-step-icon {
	border: 1px solid #f35b3f;
	color: #f35b3f;
	background: #fff;
	line-height: 48px;
}

.f1-step.active .f1-step-icon {
	width: 48px;
	height: 48px;
	margin-top: 0;
	background: #f35b3f;
	font-size: 22px;
	line-height: 48px;
}

.f1-step p {
	color: #ccc;
}

.f1-step.activated p {
	color: #f35b3f;
}

.f1-step.active p {
	color: #f35b3f;
}

.f1 fieldset {
	text-align: left;
}

.f1-buttons {
	text-align: right;
}

.f1 .input-error {
	border-color: #f35b3f;
}

input[type="text"],
input[type="password"],
input[type="number"],
textarea,
textarea.form-control {
	width: 100%;
	height: 44px;
	margin: 0;
	padding: 0 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #888;
	background: #fff;
	box-shadow: none;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 44px;
	vertical-align: middle;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

textarea,
textarea.form-control {
	height: 90px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
textarea.form-control:focus {
	border: 1px solid #ccc;
	outline: 0;
	background: #fff;
	box-shadow: none;
}

input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
textarea:-moz-placeholder,
textarea.form-control:-moz-placeholder {
	color: #888;
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder {
	color: #888;
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder {
	color: #888;
}

label {
	font-weight: 300;
}

label.feedzy-sr-only {
	font-weight: 400;
}

fieldset.feedzy-screen3 label.feedzy-sr-only {
	font-size: larger;
}

button.btn {
	min-width: 105px;
	height: 44px;
	margin: 0;
	padding: 0 20px;
	border: 0;
	border-radius: 4px;
	color: #fff;
	box-shadow: none;
	text-shadow: none;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 40px;
	vertical-align: middle;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

button.btn:hover {
	opacity: 0.6;
	color: #fff;
}

button.btn:active {
	outline: 0;
	opacity: 0.6;
	color: #fff;
	box-shadow: none;
}

button.btn:focus,
button.btn:active:focus,
button.btn.active:focus {
	outline: 0;
	opacity: 0.6;
	color: #fff;
}

button.btn.btn-next,
button.btn.btn-next:focus,
button.btn.btn-next:active:focus,
button.btn.btn-next.active:focus {
	background: #f35b3f;
}

button.btn.btn-submit,
button.btn.btn-submit:focus,
button.btn.btn-submit:active:focus,
button.btn.btn-submit.active:focus {
	background: #f35b3f;
}

button.btn.btn-previous,
button.btn.btn-previous:focus,
button.btn.btn-previous:active:focus,
button.btn.btn-previous.active:focus {
	background: #bbb;
}

button.btn.btn-submit.btn-activate,
button.btn.btn-submit.btn-activate:focus,
button.btn.btn-submit.btn-activate:active:focus,
button.btn.btn-submit.btn-activate.active:focus {
	background: #8ce196;
}

/*
Toggle switches
*/
.feedzy-toggle {
	visibility: hidden;
	position: absolute;
	margin-left: -9999px;
}

.feedzy-toggle + label {
	display: block;
	position: relative;
	outline: none;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input.feedzy-toggle-round + label {
	width: 60px;
	height: 22px;
	border-radius: 22px;
	background-color: #ddd;
}

input.feedzy-toggle-round + label:before,
input.feedzy-toggle-round + label:after {
	display: block;
	position: absolute;
	top: 1px;
	bottom: 1px;
	left: 1px;
	content: "";
}

input.feedzy-toggle-round + label:before {
	right: 1px;
	border-radius: 15px;
	background-color: #f1f1f1;
	-webkit-transition: background 0.4s;
	transition: background 0.4s;
}

input.feedzy-toggle-round + label:after {
	width: 23px;
	height: 23px;
	border-radius: 100%;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	-webkit-transition: margin 0.4s;
	transition: margin 0.4s;
}

input.feedzy-toggle-round:checked + label:before {
	background-color: #44cf6c;
}

input.feedzy-toggle-round:checked + label:after {
	margin-left: 36px;
}

div.feedzy-row > div.label_description,
div.feedzy-row > div.feedzy-separator,
div.feedzy-row > div.form_item {
	display: inline-block;
	width: 10%;	
	vertical-align: middle;
	border-bottom: none !important;
}

div.feedzy-row {
	border-bottom: 1px solid #efefef;
	min-height: 90px;
}

div.feedzy-separator {
	font-size: 30px;
}

div.feedzy-row > div.form_item {
	display: inline-table;
}

div.feedzy-row > div.label_description,
div.feedzy-row > div.form_item {
	width: 43%;	
}

.feedzy-inline {
	display: inline-block !important;
}

/*
!!! CAUTION -- Hides Core WordPress Post Elements
*/

#poststuff #post-body.columns-2 {
	margin-right: 0;
}

div#side-sortables {
	display: none;
}

#titlediv .inside {
	display: none;
}

div#advanced-sortables {
	display: none;
}

div.feedzy-custom-right {
	text-indent: 5%;
}

span.feedzy-spinner {
	float: none !important;
}


.only-pro,
.only-pro input,
.only-pro button,
.only-pro textarea,
.only-pro select {
	cursor: not-allowed !important;
}

.only-pro .chosen-container,
.only-pro .chosen-single {
	pointer-events: none;
}

.only-pro > div {
	position: relative;
}

.only-pro-content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	background: rgba(253,253,253,0.9);
	transition: 0.5s ease;
	z-index: 99999;
}

.only-pro:hover .only-pro-content {
	opacity: 1;
}

.only-pro:hover input,
.only-pro:hover label,
.only-pro:hover button,
.only-pro:hover textarea,
.only-pro:hover select,
.only-pro:hover button,
.only-pro:hover ~ button,
.only-pro:hover .chosen-container,
.only-pro:hover .chosen-single,
.only-pro:hover .label_description,
.only-pro:hover select option {
	opacity: 0.3;
}

.only-pro-container {
	display: table;
	width: 100%;
	height: 100%;
}

.only-pro-inner {
	display: table-cell;
	vertical-align: middle;
}

.only-pro-content p {
	margin: 0px 15px;
	padding: 15px;
	font-size: 14px;
	font-weight: 700;
}

.only-pro-content a {
	display: inline-block;
	padding: 7px 12px;
	color: #fff;
	background: #ff595e;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.1s ease;
}

.only-pro-content a:hover {
	background: #ce484c;
}

.feedzy-highlight {
	background-color: #f1f1f1;
	padding: 1%;
}

.feedzy-dialog {
	display: none;
}

.feedzy-button-inside {
	position: relative;
}

.feedzy-button-inside input {
	outline: none;
}

.feedzy-button-inside input ~ a,
.feedzy-button-inside input ~ a:hover,
.feedzy-button-inside input ~ a:visited {
	position: absolute;
	right: 0px;
	top: 0px;
	border: none;
	height: 43px;
	width: 43px;
	outline: none;
	text-align: center;
	font-weight: bold;
	z-index: 999;
	background-color: #f1f1f1;
	text-decoration: none;
	color: #e14c53;
}

.feedzy-button-inside input ~ a > i {
	line-height: 44px;
	outline: none;
	border: none;
}

.form-group small i {
	font-size: 15px;
    line-height: 1.5;
}

#TB_ajaxContent ul {
	list-style: decimal;
	margin-left: 20px;
}

#TB_ajaxContent ul li {
    padding: 5px !important;
}


#TB_ajaxContent p.loading-img {
	text-align: center;
}

#TB_ajaxContent.loaded p.hide-when-loaded {
	display: none;
}

#TB_ajaxContent div.dry_run span {
	display: block;
}

#TB_ajaxContent div.dry_run span i.pass {
	color: #149714;
}

#TB_ajaxContent div.dry_run span i.fail {
	color: #ca4a1f;
}