/* Определение переменных
   ========================================================================== */
/*@regular: 'PTSans-Regular';
@bold: 'PTSans-Bold';
@italic: 'PTSans-Italic';
@caption: 'PTSans-Caption';
@rub: 'ALSRubl';

@spriteUrl: url('../images/sprites.png');*/
/* Прозрачность.
   ========================================================================== */
/* Размытие
   ========================================================================== */
/* Тень.
   ========================================================================== */
/* Стандартная рамка с круглымы углами.
   ========================================================================== */
/* Скругленые углы.
   ========================================================================== */
/* Центрирование абсолютно спозиционированного элемента по горизонтали и вертикали.
   ========================================================================== */
/* Центрирование абсолютно спозиционированного элемента по горизонтали.
   ========================================================================== */
/* Центрирование абсолютно спозиционированного элемента по вертикали.
   ========================================================================== */
/* Шрифт.
   ========================================================================== */
/* Плавная смена свойств.
   ========================================================================== */
/* Трасформация.
   ========================================================================== */
/* Поворт элемента.
   ========================================================================== */
/* Зумирование элемента.
   ========================================================================== */
/* Размер фона.
   ========================================================================== */
.b-select-input {
  position: relative;
  display: inline-block;
  padding: 0 35px 0 16px;
  vertical-align: middle;
  background: #c63b39;
  cursor: pointer;
}
.b-select-input .current-value {
  height: 35px;
  min-width: 100px;
}
.b-select-input .current-value .label {
  font: 14px 'Helvetica-Light', sans-serif;
  line-height: 35px;
  color: #ffffff;
  letter-spacing: -0.1px;
  border-bottom: 1px dotted #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.b-select-input:hover .current-value .label,
.b-select-input.open .current-value .label {
  border-bottom-color: transparent;
}
.b-select-input .arrow {
  position: absolute;
  width: 15px;
  height: 8px;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  background: url('../images/select-input-arrow.png') no-repeat;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.b-select-input.open .arrow {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.b-select-input .values {
  position: absolute;
  width: 231px;
  top: 35px;
  left: 0px;
  padding: 21px 0 15px 0px;
  background: #c63b39;
  visibility: hidden;
}
.b-select-input .values .item {
  padding: 7px 0 7px 36px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.b-select-input .values .item:hover {
  background: #e46359;
}
.b-select-input .values .value {
  font: 14px 'Helvetica-Light', sans-serif;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.1px;
}
.b-select-input select {
  display: none;
}
/* Общие стили форм.
   ========================================================================== */
.f-form {
  text-align: center;
}
.f-form .title {
  text-transform: uppercase;
  font: 18px 'Fontatigo4F', sans-serif;
  line-height: 1.2;
  color: #000000;
  letter-spacing: 0px;
}
.f-form .f-element {
  position: relative;
}
.f-form .f-element .f-label {
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
}
.f-form .f-element .f-error {
  padding-top: 5px;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #ca3737;
}
.f-form .f-element .f-notice {
  font: 11px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #787878;
}
.f-form .f-element-text .f-control input {
  width: 358px;
  height: 31px;
  padding: 0 10px;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
  border: 1px solid #bfbfbf;
  background: #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.f-form .f-element-text .f-control input:focus {
  border-color: #6895bb;
}
.f-form .f-element-text .f-control.error input {
  border-color: #ff5650;
}
.f-form .f-element-textarea .f-control textarea {
  height: 100px;
  width: 358px;
  padding: 10px;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
  border: 1px solid #bfbfbf;
  outline: none;
}
.f-form .f-element-textarea .f-control textarea:focus {
  border-color: #6895bb;
  outline: none;
}
.f-form .f-element-captcha .f-captcha {
  display: inline-block;
  width: 120px;
  margin: 0 20px 0 0;
  vertical-align: top;
}
.f-form .f-element-captcha .f-captcha a {
  display: block;
  margin: 5px 0 0 0;
  text-decoration: none;
  font: 11px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #6895bb;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.f-form .f-element-captcha .f-captcha a:hover {
  color: #428ecf;
}
.f-form .f-element-captcha .f-captcha-text {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.f-form .f-element-captcha .f-captcha-text .f-label {
  display: block;
  margin: -2px 0 5px 0;
  padding: 0;
  text-align: left;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1em;
  color: #000000;
}
.f-form .f-element-captcha .f-captcha-text input {
  height: 31px;
  padding: 0 10px;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
  border: 1px solid #bfbfbf;
  background: #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  outline: none;
}
.f-form .f-element-captcha .f-captcha-text input:focus {
  border-color: #6895bb;
}
.f-form .f-element-button .f-control input {
  display: inline-block;
  height: 40px;
  padding: 0 29px;
  font: 15px 'Helvetica-Bold', sans-serif;
  line-height: 1.2;
  color: #ffffff;
  border: none;
  background: #da4135;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.f-form .f-element-button .f-control input:hover {
  background: #ff5650;
}
.f-form .f-element-select .select {
  padding: 0 20px 0 10px;
  border: 1px solid #bfbfbf;
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -weblit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.f-form .f-element-select .trigger {
  border: 0;
}
.f-form .f-element-select .dropdown {
  width: 100%;
}
.f-form .f-error-summary {
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #ca3737;
}
.f-form .f-element-select .select2-choice {
  height: 31px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 31px;
  color: #000000;
  border-color: #bfbfbf;
  background: none;
}
.f-form .f-element-select .select2-choice .select2-arrow {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: none;
  border: none;
}
.f-form .f-element-select .select2-choice .select2-arrow b {
  position: absolute;
  width: 11px;
  height: 9px;
  top: 50%;
  margin-top: -4.5px;
  right: 10px;
  background: url('../images/select-arrow.png') no-repeat;
}
.f-form .f-element-select .select2-choice:hover b {
  background-position: left bottom;
}
.f-form .f-element-select .select2-container-active .select2-choice .select2-arrow b {
  background-position: left bottom;
}
.select2-drop.select2-drop-active {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border-color: #bfbfbf;
}
.select2-drop .select2-result .select2-result-label {
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
}
/* Форма входа.
   ========================================================================== */
.b-site-login-form {
  width: 580px;
  display: none;
}
.b-site-login-form .login-social-network {
  padding: 40px 0 30px;
  border: 1px dotted #bababa;
  background: #fff;
}
.b-site-login-form .services {
  display: inline-block;
  height: 115px;
  width: 488px;
  margin-top: 15px;
  border: 7px solid #eaedf0;
  font-size: 0px;
  line-height: 115px;
  white-space: nowrap;
  overflow: hidden;
}
.b-site-login-form .services .auth-services {
  display: inline-block;
  height: 115px;
  line-height: 115px;
  margin: 0;
  overflow: hidden;
}
.b-site-login-form .services .auth-service {
  float: none;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.b-site-login-form .services .auth-service + .auth-service {
  margin: 0 0 0 27px;
}
.b-site-login-form .services .auth-link {
  margin: 0;
  width: auto;
}
.b-site-login-form .services .auth-icon {
  width: 68px;
  height: 68px;
  background: url('../images/social-icons-big.png') no-repeat;
}
.b-site-login-form .services .auth-icon.vkontakte {
  background-position: 0px 0;
}
.b-site-login-form .services .auth-icon.vkontakte i {
  background-position: 0px -70px;
}
.b-site-login-form .services .auth-icon.facebook {
  background-position: -70px 0;
}
.b-site-login-form .services .auth-icon.facebook i {
  background-position: -70px -70px;
}
.b-site-login-form .services .auth-icon.odnoklassniki {
  background-position: -140px 0;
}
.b-site-login-form .services .auth-icon.odnoklassniki i {
  background-position: -140px -70px;
}
.b-site-login-form .services .auth-icon i {
  display: block;
  width: 68px;
  height: 68px;
  background: url('../images/social-icons-big.png') no-repeat;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.b-site-login-form .services .auth-icon:hover i {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.b-site-login-form .enter {
  padding: 30px 0 10px 0;
  background: #eff1f4;
}
.b-site-login-form .enter .title {
  margin-bottom: 25px;
}
.b-site-login-form .enter .f-element {
  margin-bottom: 20px;
}
.b-site-login-form .enter .f-label {
  margin-bottom: 5px;
}
.b-site-login-form .enter .f-element-remember {
  width: 380px;
  margin: 0 auto;
  text-align: right;
}
.b-site-login-form .enter .f-element-remember .forgot-password {
  float: left;
}
.b-site-login-form .enter .f-element-remember .forgot-password a {
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #6895bb;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.b-site-login-form .enter .f-element-remember .forgot-password a:hover {
  color: #428ecf;
}
.b-site-login-form .enter .f-element-remember .f-control {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.b-site-login-form .enter .f-element-remember .f-label {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.b-site-login-form .enter .f-element-remember .f-label span {
  color: #9d9d9d;
}
.b-site-login-form .enter .f-element-button {
  margin: 28px 0 15px 0;
}
.b-site-login-form .f-element-captcha {
  padding: 20px 0 20px;
  border-bottom: 1px dotted #bababa;
}
/* Форма регистрации.
   ========================================================================== */
.b-site-register-form {
  display: none;
  width: 580px;
  background: #ffffff;
  text-align: center;
}
.b-site-register-form .header {
  padding: 35px 0 25px 0;
}
.b-site-register-form .f-content {
  background: #eff1f4;
}
.b-site-register-form .f-block {
  padding: 20px 0 20px 0;
  border-top: 1px dotted #bababa;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  /*&.success {
			background: #e4f3cf;
		}

		&.error {
			background: #f7d0d0;
		}*/
}
.b-site-register-form .f-block.select-date {
  font-size: 0px;
}
.b-site-register-form .f-block.select-date .f-block-title {
  margin-bottom: 10px;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
}
.b-site-register-form .f-block.select-date .f-element-select {
  display: inline-block;
  width: auto;
  margin: 0;
  vertical-align: middle;
  text-align: left;
}
.b-site-register-form .f-block.select-date .f-element-select + .f-element-select {
  margin-left: 9px;
}
.b-site-register-form .f-block.select-date .f-element-select .select {
  padding: 0 20px 0 10px;
  border: 1px solid #bfbfbf;
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -weblit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.b-site-register-form .f-block.select-date .f-element-select .trigger {
  border: 0;
}
.b-site-register-form .f-block.select-date .f-element-select .dropdown {
  width: 100%;
}
.b-site-register-form .f-block.select-date .f-element-year .select {
  width: 69px;
}
.b-site-register-form .f-block.select-date .f-element-month .select {
  width: 89px;
}
.b-site-register-form .f-block.select-date .f-element-day .select {
  width: 69px;
}
.b-site-register-form .f-block .f-error {
  margin-top: 15px;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #da4135;
}
.b-site-register-form .f-element {
  width: 380px;
  margin: 0 auto;
}
.b-site-register-form .f-element + .f-element {
  margin-top: 10px;
}
.b-site-register-form .f-element .f-notice {
  margin-top: 15px;
}
.b-site-register-form .f-element-text .f-label {
  margin-bottom: 10px;
}
.b-site-register-form .f-element-radio-button .f-label {
  margin-bottom: 15px;
}
.b-site-register-form .f-element-radio-button .radio-button {
  display: inline-block;
  padding: 0 15px;
}
.b-site-register-form .f-element-radio-button .radio-button label {
  margin: 0;
  vertical-align: middle;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #444444;
}
.b-site-register-form .f-element-radio-button .radio-button input {
  margin: 0 5px 0 0;
  padding: 0;
  vertical-align: middle;
}
.b-site-register-form .f-element-required {
  white-space: nowrap;
}
.b-site-register-form .f-element-required .required {
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
}
.b-site-register-form .f-element-required .required a {
  text-decoration: none;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #6895bb;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.b-site-register-form .f-element-required .required a.hover {
  color: #428ecf;
}
.b-site-register-form .f-element-required .f-control {
  display: inline-block;
  vertical-align: middle;
}
.b-site-register-form .f-element-required .f-control input {
  margin: 0;
}
.b-site-register-form .f-element-required .f-label {
  display: inline-block;
  vertical-align: bottom;
}
.b-site-register-form .f-element-required .f-notice {
  white-space: normal;
}
.f-form.b-profile-edit-form {
  text-align: left;
}
.f-form.b-profile-edit-form .header {
  margin-bottom: 30px;
}
.f-form.b-profile-edit-form .f-form {
  text-align: left;
}
.f-form.b-profile-edit-form .f-form .control-label {
  display: inline-block;
  width: 160px;
  margin-right: 20px;
  vertical-align: top;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #444444;
}
.f-form.b-profile-edit-form .f-form .controls {
  display: inline-block;
  vertical-align: top;
}
.f-form.b-profile-edit-form .f-form .fileupload.fc-image {
  position: relative;
  padding: 0 0 0 100px;
  background: #eeeeee;
}
.f-form.b-profile-edit-form .f-form .thumbnail {
  position: absolute;
  overflow: hidden;
  width: 100px;
  height: 100px;
  left: 0px;
  top: 0px;
}
.f-form.b-profile-edit-form .f-form .thumbnail .background {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: #d4d4d4;
}
.f-form.b-profile-edit-form .f-form .thumbnail .background .icon {
  position: absolute;
  width: 28px;
  height: 30px;
  top: 15px;
  left: 50%;
  margin-left: -14px;
  background: url('../images/download-icon.png') no-repeat;
}
.f-form.b-profile-edit-form .f-form .thumbnail .background .label {
  display: block;
  width: 60px;
  padding: 59px 20px 0 20px;
  text-align: center;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #444444;
}
.f-form.b-profile-edit-form .f-form .thumbnail .upload-button {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 2;
}
.f-form.b-profile-edit-form .f-form .thumbnail img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.f-form.b-profile-edit-form .f-form .fileupload-new .thumbnail .background {
  z-index: 1;
}
.f-form.b-profile-edit-form .f-form .image-data {
  position: relative;
  display: inline-block;
  width: 114px;
  height: 80px;
  padding: 20px 0 0 20px;
  overflow: hidden;
  vertical-align: top;
  background: #eeeeee;
}
.f-form.b-profile-edit-form .f-form .image-data .change {
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #444444;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.f-form.b-profile-edit-form .f-form .image-data .change .icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 20px;
  vertical-align: middle;
  text-decoration: none;
  background: url('../images/upload-image-refresh.png') no-repeat;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.f-form.b-profile-edit-form .f-form .image-data .change .icon.hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: url('../images/upload-image-refresh.png') no-repeat left bottom;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.f-form.b-profile-edit-form .f-form .image-data .change:hover .icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.f-form.b-profile-edit-form .f-form .image-data .change:hover .icon.hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.f-form.b-profile-edit-form .f-form .image-data .change .label {
  vertical-align: middle;
}
.f-form.b-profile-edit-form .f-form .image-data .delete {
  display: inline-block;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #444444;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  margin: 10px 0 0 0px;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.5 ease-out 0s;
  -moz-transition: all 0.5 ease-out 0s;
  -o-transition: all 0.5 ease-out 0s;
  transition: all 0.5 ease-out 0s;
  outline: none;
}
.f-form.b-profile-edit-form .f-form .image-data .delete .icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 20px;
  vertical-align: middle;
  background: url('../images/upload-image-delete.png') no-repeat;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.f-form.b-profile-edit-form .f-form .image-data .delete .icon.hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: url('../images/upload-image-delete.png') no-repeat left bottom;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.f-form.b-profile-edit-form .f-form .image-data .delete:hover .icon.hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.f-form.b-profile-edit-form .f-form .image-data .delete .label {
  vertical-align: middle;
}
.f-form.b-profile-edit-form .f-form .image-data .underlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: #eeeeee;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  display: none;
}
.f-form.b-profile-edit-form .f-form .fileupload-new .image-data .underlay {
  display: block;
  z-index: 1;
}
.f-form.b-profile-edit-form .f-form .fileupload-new .image-data .change,
.f-form.b-profile-edit-form .f-form .fileupload-new .image-data .delete {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.f-form.b-profile-edit-form .f-block + .f-block {
  padding-top: 20px;
  border-top: 1px dotted #bababa;
}
.f-form.b-profile-edit-form .f-element {
  margin-bottom: 19px;
  font-size: 0px;
}
.f-form.b-profile-edit-form .f-element-text .f-label,
.f-form.b-profile-edit-form .f-element-textarea .f-label,
.f-form.b-profile-edit-form .f-element-select .f-label {
  display: inline-block;
  width: 160px;
  margin-right: 20px;
  vertical-align: middle;
  color: #444444;
}
.f-form.b-profile-edit-form .f-element-text .f-control,
.f-form.b-profile-edit-form .f-element-textarea .f-control,
.f-form.b-profile-edit-form .f-element-select .f-control {
  display: inline-block;
  vertical-align: middle;
}
.f-form.b-profile-edit-form .f-element-text .f-control input,
.f-form.b-profile-edit-form .f-element-textarea .f-control input,
.f-form.b-profile-edit-form .f-element-select .f-control input {
  width: 278px;
}
.f-form.b-profile-edit-form .f-element-text .f-notice,
.f-form.b-profile-edit-form .f-element-textarea .f-notice,
.f-form.b-profile-edit-form .f-element-select .f-notice {
  margin-top: 5px;
  padding-left: 180px;
}
.f-form.b-profile-edit-form .f-element-textarea .f-control textarea {
  height: 208px;
  width: 278px;
  padding: 10px;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
  border: 1px solid #bfbfbf;
  outline: none;
}
.f-form.b-profile-edit-form .f-element-textarea .f-control textarea:focus {
  border-color: #6895bb;
  outline: none;
}
.f-form.b-profile-edit-form .f-element-checkbox .f-control {
  display: inline-block;
  vertical-align: middle;
}
.f-form.b-profile-edit-form .f-element-checkbox .f-control input {
  margin: 0;
}
.f-form.b-profile-edit-form .f-element-checkbox .f-label {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #444444;
}
.f-form.b-profile-edit-form .f-element-name-hided {
  padding-left: 180px;
}
.f-form.b-profile-edit-form .f-element-password .change-password {
  display: inline-block;
  height: 33px;
  margin: 0 0 0 10px;
  padding: 0 19px 0 19px;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  background: #6895bb;
  cursor: pointer;
}
.f-form.b-profile-edit-form .f-element-password .change-password span {
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 33px;
  color: #ffffff;
}
.f-form.b-profile-edit-form .f-element-password .change-password:hover {
  background: #81b1d2;
}
.f-form.b-profile-edit-form .f-element-radio-button .f-label {
  display: inline-block;
  width: 160px;
  margin-right: 20px;
  vertical-align: middle;
  color: #444444;
}
.f-form.b-profile-edit-form .f-element-radio-button .f-control {
  display: inline-block;
  vertical-align: middle;
}
.f-form.b-profile-edit-form .f-element-radio-button .radio-button {
  display: inline-block;
  padding: 0;
  margin-right: 30px;
}
.f-form.b-profile-edit-form .f-element-radio-button .radio-button label {
  margin: 0;
  vertical-align: middle;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
}
.f-form.b-profile-edit-form .f-element-radio-button .radio-button input {
  margin: 0 5px 0 0;
  padding: 0;
  vertical-align: middle;
}
.f-form.b-profile-edit-form .f-element-select .f-label {
  display: inline-block;
  width: 160px;
  margin-right: 20px;
}
.f-form.b-profile-edit-form .f-element-select .f-control {
  display: inline-block;
  width: 280px;
  font: 15px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #000000;
}
.f-form.b-profile-edit-form .f-element-select .f-control .select2-container {
  width: 300px;
}
.f-form.b-profile-edit-form .f-element-button {
  margin-left: 180px;
}
.b-password-change-form {
  display: none;
  width: 580px;
  padding: 20px 0;
  background: #fff;
}
.b-password-change-form .title {
  margin-bottom: 25px;
}
.b-password-change-form .f-element {
  margin-bottom: 20px;
}
.b-password-change-form .f-label {
  margin-bottom: 5px;
}
.b-password-change-form .f-element-button {
  margin: 28px 0 0px 0;
}
/* Востановление пароля.
   ========================================================================== */
.b-recovery-password {
  display: none;
  width: 580px;
  padding: 0 0 25px 0;
  background: #eff1f4;
}
.b-recovery-password .header {
  padding: 45px 0 25px 0;
  border-bottom: 1px dotted #bababa;
  background: #fff;
}
.b-recovery-password .middle {
  padding: 15px 0 15px 0;
  border-bottom: 1px dotted #bababa;
}
.b-recovery-password .f-element {
  margin-bottom: 0px;
}
.b-recovery-password .f-label {
  margin-bottom: 5px;
}
.b-recovery-password .f-notice {
  margin: 5px auto 0;
  width: 380px;
}
.b-recovery-password .f-element-button {
  margin: 20px 0 0px 0;
}
.b-recovery-password .f-error {
  width: 380px;
  margin: 15px auto 0;
  left: 0px;
  top: 100%;
  padding-top: 2px;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #ca3737;
}
.b-recovery-password .f-element-captcha {
  padding: 20px 0 0px;
  border-bottom: 1px dotted #bababa;
}
.b-site-bug-report-form {
  display: none;
  width: 580px;
  padding: 0 0 25px 0;
  background: #eff1f4;
}
.b-site-bug-report-form .header {
  padding: 45px 0 25px 0;
  border-bottom: 1px dotted #bababa;
  background: #fff;
}
.b-site-bug-report-form .middle {
  padding: 15px 0 15px 0;
  border-bottom: 1px dotted #bababa;
}
.b-site-bug-report-form .f-element {
  margin-bottom: 20px;
}
.b-site-bug-report-form .f-label {
  margin-bottom: 5px;
}
.b-site-bug-report-form .f-notice {
  margin: 5px auto 0;
  width: 380px;
}
.b-site-bug-report-form .f-element-button {
  margin: 20px 0 0px 0;
}
.b-site-bug-report-form .f-error {
  text-align: center;
  font: 13px 'Helvetica-Roman', sans-serif;
  line-height: 1.2;
  color: #ca3737;
}
.b-site-bug-report-form .f-element-captcha {
  margin: 0;
  padding: 15px 0 0px 0;
  border-top: 1px dotted #bababa;
}
