/* Forms =========================== */

.form-control:focus
{
	box-shadow: none; 
	-webkit-box-shadow: none;
} 

.has-success .control-label { color: #37b358; }

.has-success .form-control {
	border-color: #37b358;
	box-shadow: none; 
	color: #37b358;
}
.has-success .form-control:focus {
	border-color: #2b8c45;
	box-shadow: none; 
}

.has-warning .control-label {color: #f6c163; }
.has-warning .form-control {
	border-color: #f6c163;
	color: #f6c163;
}
.has-warning .form-control:focus {
	border-color: #f3ae33;
	box-shadow: none; 
}

.has-error .control-label { color: #ea4335; }

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

.has-error .form-control:focus {
	border-color: #d62516;
	box-shadow: none; 
}


.form-control {
	display: block;
	width: 100%;
	height: 38px;
	padding: 10px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #404040;
	background-color: #fff;
	background-image: none;
	border: 1px solid #d5d8de;
	border-radius: 4px;

}
.form-control:focus {
	border-color: #4285f4;
	outline: 0;
	/* box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(66, 133, 244, 0.6); */
}
.form-control::-moz-placeholder {
	color: #999;
	opacity: 1;
}
.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 {
	background-color: #eeeeee;
	opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
	cursor: not-allowed;
}
textarea.form-control {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: none;
}

/* Размери */

.input-xlg {
	height: 57px;
	padding: 12px 14px;
	font-size: 20px;
	font-weight: 300;
	border-radius: 4px;
}

.input-lg {
	height: 48px;
	padding: 12px 14px;
	font-size: 18px;
	font-weight: 300;
	border-radius: 4px;
}
.input-sm {
	height: 30px;
	font-size: 13px;
	padding: 4px 12px;
}
.input-xs {
	height: 28px;
	font-size: 10px;
	padding: 6px 9px;
}

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

/* Радио-бутони като икони */

.ft-radio-icon {
	display: block;
	margin: 0;
	padding: 7px 0;
}
.ft-radio-icon input[type="radio"] {
	margin: 0;
	display: none;
	width: 52px;
}
.ft-radio-icon label {
	cursor: pointer;
	margin: 0;
	width: 52px;
	height: 52px;
	line-height: 52px;
	border: 1px solid #d5d8de;
	border-radius: 50%;
	text-align: center;
	font-size: 36px;
	vertical-align: middle;
	color: #808080;
}
.ft-radio-icon label:hover {
	border-color: #b8bdc8;
}
.ft-radio-icon input[type="radio"]:checked + label {
	border-color: #4285f4;
	color: #4285f4;
}
.ft-radio-icon.has-success input[type="radio"]:checked + label {
	border-color: #37b358;
	color: #37b358;
}
.ft-radio-icon.has-warning input[type="radio"]:checked + label,
.ft-radio-icon.has-warning input[type="radio"] + label {
	border-color: #f6c163;
	color: #f6c163;
}
.ft-radio-icon.has-danger input[type="radio"]:checked + label {
	border-color: #eb6357;
	color: #eb6357;
}
.ft-radio-icon.inline {
	display: inline-block;
}
.ft-radio-icon.inline + .ft-radio-icon.inline {
	margin-left: 18px;
}


/* Оформяне на чек-бокс и радио-бутони*/

.ft-checkbox,
.ft-radio {
  display: block;
  line-height: 22px;
  margin: 0;
  padding: 7px 0;
}
.form-horizontal .ft-checkbox,
.form-horizontal .ft-radio {
  padding: 7px 0;
  min-height: auto;
}
.ft-checkbox input[type="checkbox"],
.ft-radio input[type="checkbox"],
.ft-checkbox input[type="radio"],
.ft-radio input[type="radio"] {
  margin: 0;
  display: none;
  width: 22px;
}
.ft-checkbox label,
.ft-radio label {
  margin-bottom: 0;
}
.ft-checkbox label::-moz-selection,
.ft-radio label::-moz-selection {
  background-color: transparent;
}
.ft-checkbox label::selection,
.ft-radio label::selection {
  background-color: transparent;
}
.ft-checkbox input[type="checkbox"] + label,
.ft-radio input[type="checkbox"] + label,
.ft-checkbox input[type="radio"] + label,
.ft-radio input[type="radio"] + label {
  padding-left: 0;
}
.ft-checkbox input[type="checkbox"] + label:before,
.ft-radio input[type="checkbox"] + label:before,
.ft-checkbox input[type="radio"] + label:before,
.ft-radio input[type="radio"] + label:before {
	content: "";
	width: 22px;
	height: 22px;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-right: 6px;
	font-size: 20px;
	font-family: 'ficons';
	font-weight: normal;
	line-height: 19px;
	vertical-align: bottom;
	text-align: center;
	background-color: #ffffff;
	cursor: pointer;
}
.ft-checkbox input[type="checkbox"] + label:hover:before,
.ft-radio input[type="checkbox"] + label:hover:before,
.ft-checkbox input[type="radio"] + label:hover:before,
.ft-radio input[type="radio"] + label:hover:before {
  border-color: #a2a8b6;
}
.ft-checkbox input[type="checkbox"]:hover + label:before,
.ft-radio input[type="checkbox"]:hover + label:before,
.ft-checkbox input[type="radio"]:hover + label:before,
.ft-radio input[type="radio"]:hover + label:before {
  border-color: #b8bdc8;
}
.ft-checkbox input[type="checkbox"]:checked + label:before,
.ft-radio input[type="checkbox"]:checked + label:before,
.ft-checkbox input[type="radio"]:checked + label:before,
.ft-radio input[type="radio"]:checked + label:before {
  content: "\f26b";
  color: #4285f4;
  border-color: #4285f4;
}
.ft-checkbox input[type="checkbox"]:disabled + label,
.ft-radio input[type="checkbox"]:disabled + label,
.ft-checkbox input[type="radio"]:disabled + label,
.ft-radio input[type="radio"]:disabled + label {
  opacity: .5;
  pointer-events: none;
}
.ft-checkbox input[type="checkbox"]:disabled + label:before,
.ft-radio input[type="checkbox"]:disabled + label:before,
.ft-checkbox input[type="radio"]:disabled + label:before,
.ft-radio input[type="radio"]:disabled + label:before {
  pointer-events: none;
  background-color: #ffffff;
}
.ft-checkbox input[type="radio"] + label:before,
.ft-radio input[type="radio"] + label:before {
  border-radius: 50%;
  width: 23px;
  height: 23px;
  line-height: 21px;
  font-size: 13px;
}
.ft-checkbox input[type="radio"]:checked + label:before,
.ft-radio input[type="radio"]:checked + label:before {
  content: "\f26d";
}
.ft-checkbox.inline,
.ft-radio.inline {
  display: inline-block;
}
.ft-checkbox.inline + .ft-checkbox.inline,
.ft-checkbox.inline + .ft-radio.inline,
.ft-radio.inline + .ft-checkbox.inline,
.ft-radio.inline + .ft-radio.inline {
  margin-left: 18px;
}
.ft-checkbox.has-success input[type="checkbox"] + label:before,
.ft-radio.has-success input[type="checkbox"] + label:before,
.ft-checkbox.has-success input[type="radio"] + label:before,
.ft-radio.has-success input[type="radio"] + label:before {
  color: #37b358;
  border-color: #37b358;
}
.ft-checkbox.has-warning input[type="checkbox"] + label:before,
.ft-radio.has-warning input[type="checkbox"] + label:before,
.ft-checkbox.has-warning input[type="radio"] + label:before,
.ft-radio.has-warning input[type="radio"] + label:before {
  color: #f6c163;
  border-color: #f6c163;
}
.ft-checkbox.has-danger input[type="checkbox"] + label:before,
.ft-radio.has-danger input[type="checkbox"] + label:before,
.ft-checkbox.has-danger input[type="radio"] + label:before,
.ft-radio.has-danger input[type="radio"] + label:before {
  color: #eb6357;
  border-color: #eb6357;
}
.ft-checkbox-color input[type="checkbox"]:checked + label:before,
.ft-radio-color input[type="checkbox"]:checked + label:before,
.ft-checkbox-color input[type="radio"]:checked + label:before,
.ft-radio-color input[type="radio"]:checked + label:before {
  color: #ffffff;
  border-color: #4285f4;
  background-color: #4285f4;
}
.ft-checkbox-color.has-success input[type="checkbox"]:checked + label:before,
.ft-radio-color.has-success input[type="checkbox"]:checked + label:before,
.ft-checkbox-color.has-success input[type="radio"]:checked + label:before,
.ft-radio-color.has-success input[type="radio"]:checked + label:before {
  color: #ffffff;
  border-color: #37b358;
  background-color: #37b358;
}
.ft-checkbox-color.has-warning input[type="checkbox"]:checked + label:before,
.ft-radio-color.has-warning input[type="checkbox"]:checked + label:before,
.ft-checkbox-color.has-warning input[type="radio"]:checked + label:before,
.ft-radio-color.has-warning input[type="radio"]:checked + label:before {
  color: #ffffff;
  border-color: #f6c163;
  background-color: #f6c163;
}
.ft-checkbox-color.has-danger input[type="checkbox"]:checked + label:before,
.ft-radio-color.has-danger input[type="checkbox"]:checked + label:before,
.ft-checkbox-color.has-danger input[type="radio"]:checked + label:before,
.ft-radio-color.has-danger input[type="radio"]:checked + label:before {
  color: #ffffff;
  border-color: #eb6357;
  background-color: #eb6357;
}
.ft-radio-icon {
  display: block;
  margin: 0;
  padding: 7px 0;
}
.ft-radio-icon input[type="radio"] {
  margin: 0;
  display: none;
  width: 52px;
}
.ft-radio-icon label {
  cursor: pointer;
  margin: 0;
  width: 52px;
  height: 52px;
  line-height: 52px;
  border: 1px solid #d5d8de;
  border-radius: 50%;
  text-align: center;
  font-size: 36px;
  vertical-align: middle;
  color: #808080;
}
.ft-radio-icon label:hover {
  border-color: #b8bdc8;
}
.ft-radio-icon input[type="radio"]:checked + label {
  border-color: #4285f4;
  color: #4285f4;
}
.ft-radio-icon.has-success input[type="radio"]:checked + label {
  border-color: #37b358;
  color: #37b358;
}
.ft-radio-icon.has-warning input[type="radio"]:checked + label,
.ft-radio-icon.has-warning input[type="radio"] + label {
  border-color: #f6c163;
  color: #f6c163;
}
.ft-radio-icon.has-danger input[type="radio"]:checked + label {
  border-color: #eb6357;
  color: #eb6357;
}
.ft-radio-icon.inline {
  display: inline-block;
}
.ft-radio-icon.inline + .ft-radio-icon.inline {
  margin-left: 18px;
}
.ft-checkbox-sm {
  line-height: 18px;
}
.ft-checkbox-sm input[type="checkbox"] + label:before {
  width: 18px;
  height: 18px;
  font-size: 17px;
  line-height: 15px;
}

/*------------------------------------------------------------------
  [Forms]
*/
/*------------------------------------------------------------------
  [Switch button]
*/
.switch-button {
  display: inline-block;
  border-radius: 50px;
  background-color: #b3b3b3;
  width: 60px;
  height: 27px;
  padding: 4px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.switch-button input[type="checkbox"] {
  display: none;
}
.switch-button label {
  border-radius: 50%;
  box-shadow: 0 0 1px 1px #FFF inset;
  background-color: #ffffff;
  margin: 0;
  height: 19px;
  width: 19px;
  z-index: 1;
  display: inline-block;
  cursor: pointer;
  background-clip: padding-box;
}
.switch-button label:before {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  z-index: 0;
  content: "OFF";
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 27px;
  top: 0;
  text-align: right;
  padding-right: 10px;
  color: #ffffff;
}
.switch-button input[type="checkbox"]:checked + span {
  background-color: #4285f4;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4px;
}
.switch-button input[type="checkbox"]:checked + span label {
  float: right;
  border-color: #2a75f3;
}
.switch-button input[type="checkbox"]:checked + span label:before {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  z-index: 0;
  content: "ON";
  color: #ffffff;
  left: 0;
  text-align: left;
  padding-left: 10px;
}
.switch-button.switch-button-yesno label:before {
  content: "NO";
}
.switch-button.switch-button-yesno input[type="checkbox"]:checked + span label:before {
  content: "YES";
}
.switch-button.switch-button-xs {
  height: 20px;
  width: 53px;
  line-height: 16px;
  width: 50px;
}
.switch-button.switch-button-xs label {
  height: 12px;
  width: 12px;
}
.switch-button.switch-button-xs label:before {
  line-height: 21px;
}
.switch-button.switch-button-sm {
  height: 24px;
  width: 57px;
  line-height: 20px;
}
.switch-button.switch-button-sm label {
  height: 16px;
  width: 16px;
}
.switch-button.switch-button-sm label:before {
  line-height: 25px;
}
.switch-button.switch-button-lg {
  height: 30px;
  width: 63px;
  line-height: 26px;
  width: 65px;
}
.switch-button.switch-button-lg label {
  height: 22px;
  width: 22px;
}
.switch-button.switch-button-lg label:before {
  line-height: 31px;
}
.switch-button.switch-button-success {
  background-color: #b3b3b3;
}
.switch-button.switch-button-success label {
  border-color: #ababab;
}
.switch-button.switch-button-success input[type="checkbox"]:checked + span {
  background-color: #34a853;
}
.switch-button.switch-button-success input[type="checkbox"]:checked + span label {
  border-color: #2e9549;
}
.switch-button.switch-button-warning {
  background-color: #b3b3b3;
}
.switch-button.switch-button-warning label {
  border-color: #ababab;
}
.switch-button.switch-button-warning input[type="checkbox"]:checked + span {
  background-color: #fbbc05;
}
.switch-button.switch-button-warning input[type="checkbox"]:checked + span label {
  border-color: #e3aa04;
}
.switch-button.switch-button-danger {
  background-color: #b3b3b3;
}
.switch-button.switch-button-danger label {
  border-color: #ababab;
}
.switch-button.switch-button-danger input[type="checkbox"]:checked + span {
  background-color: #ea4335;
}
.switch-button.switch-button-danger input[type="checkbox"]:checked + span label {
  border-color: #e82e1e;
}

/* Настройка на стандартния капча */
.form_submit .c-captcha { float: right; }
.c-captcha { position: relative; }
.c-captcha:after { clear: both; display: block; content: ""; }
.c-captcha > a { float: left; margin-right: 5px; }
.c-captcha img {
	position: relative;
	display: block;
	width: 180px; height: 60px;
	z-index: 1;
	-webkit-transition: all ease .2s; transition: all ease .2s;
}
.c-captcha > input { 
	float: left; 
	width: 180px; 
	height: 60px;}

/* Настройка стандартной капчи при ответах на комментарии */
	.dle-captcha { position: relative; }
	.dle-captcha:after { clear: both; display: block; content: ""; }
	.dle-captcha > a { float: left; margin-right: 5px; }
	.dle-captcha img {
		position: relative;
		display: block;
		width: 130px; height: 46px;
		-webkit-transition: all ease .2s; transition: all ease .2s;
	}
	.dle-captcha > input { float: left; width: 130px; }