/*==================================================================
  Form Wrappers
===================================================================*/
.admin-form,
.admin-form * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.admin-form {
  line-height: 1.231;
  font-weight: 400;
  font-size: 14px;
  color: #626262;
}
.admin-form .section {
  margin-bottom: 22px;
}
/*==================================================================
  Input General Styles
===================================================================*/
.admin-form label,
.admin-form input,
.admin-form button,
.admin-form select,
.admin-form textarea {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #626262;
  outline: none;
}
/*===============================================
  Form Dividers
================================================= */
.admin-form .spacer {
  border-top: 1px solid #eee;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
  height: 0;
}
/*==================================================================
  Form Text Elements
===================================================================*/
/* Themed Link */
.admin-form .theme-link {
  color: #4a89dc;
  text-decoration: none;
}
.admin-form .theme-link:hover {
  text-decoration: underline;
}
/* Section Divider */
.admin-form .section-divider {
  height: 0;
  border-top: 1px solid #DDD;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.admin-form .section-divider span {
  display: inline-block;
  position: relative;
  padding: 0 17px;
  background: #e9e9e9;
  color: #999;
  top: -11px;
  font-size: 15px;
}
.admin-form.panel .section-divider span,
.admin-form .panel .section-divider span,
.admin-form.tab-content .section-divider span,
.admin-form .tab-content .section-divider span {
  background: #fff;
}
.admin-form.bg-light .section-divider span,
.admin-form .bg-light .section-divider span {
  background: #FAFAFA;
}
.admin-form.bg-light.light .section-divider span,
.admin-form .bg-light.light .section-divider span {
  background: #FEFEFE;
}
.admin-form.bg-light.dark .section-divider span,
.admin-form .bg-light.dark .section-divider span {
  background: #F2F2F2;
}
.admin-form.well .section-divider span,
.admin-form .well .section-divider span {
  background: #f5f5f5;
}
/* Input Labels */
.admin-form .switch,
.admin-form .option,
.admin-form .field-label {
  font-size: 14px;
}
/* Column Labels - Can also use .field-align */
.admin-form .field-label[class*='col-'] {
  line-height: 42px;
}
.admin-form .field-align {
  line-height: 42px;
}
/*==================================================================
  General Input Styling 
===================================================================*/
.admin-form .radio,
.admin-form .option,
.admin-form .checkbox {
  cursor: pointer;
}
.admin-form .field {
  display: block;
  position: relative;
}
.admin-form .field-icon i {
  color: #BBB;
  position: relative;
}
.admin-form .field-label {
  display: block;
  margin-bottom: 7px;
}
.admin-form .field-label em {
  color: #e74c3c;
  font-size: 14px;
  font-style: normal;
  display: inline-block;
  margin-left: 4px;
  position: relative;
  top: 3px;
}
.admin-form .gui-input,
.admin-form .gui-textarea {
  padding: 10px;
}
.admin-form .select,
.admin-form .gui-input,
.admin-form .gui-textarea,
.admin-form .select > select,
.admin-form .select-multiple select {
  position: relative;
  vertical-align: top;
  border: 1px solid #DDD;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  color: #626262;
  outline: none;
  height: 42px;
  width: 100%;
  *zoom: 1;
}
.admin-form .select option {
  background: #fff;
}
.admin-form select[disabled],
.admin-form .select > select[disabled] {
  color: #aaa !important;
}
/*==================================================================
  Switches
===================================================================*/
.admin-form .switch {
  cursor: pointer;
  position: relative;
  padding-right: 10px;
  display: inline-block;
  margin-bottom: 5px;
  height: 26px;
}
.admin-form .switch > label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  height: 25px;
  width: 58px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  background: #D7D7D7;
  border: 2px solid #D7D7D7;
  text-transform: uppercase;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.admin-form .switch > label + span {
  display: inline-block;
  padding-left: 5px;
  position: relative;
  top: -7px;
}
.admin-form .switch > label:before {
  content: attr(data-off);
  position: absolute;
  top: 1px;
  right: 3px;
  width: 33px;
}
.admin-form .switch > label:after {
  content: "";
  margin: 1px;
  width: 19px;
  height: 19px;
  display: block;
  background: #fff;
}
.admin-form .switch > input {
  -webkit-appearance: none;
  position: absolute;
  width: inherit;
  height: inherit;
  opacity: 0;
  left: 0;
  top: 0;
}
/*==================================================================
  Switch:focus state
-===================================================================*/
.admin-form .switch > input:focus {
  outline: none;
}
.admin-form .switch > input:focus + label {
  color: #fff;
  border-color: #C7C7C7;
  background: #C7C7C7;
}
.admin-form .switch > input:focus + label:after {
  background: #fff;
}
/*==================================================================
  Switch:checked state
===================================================================*/
.admin-form .switch > input:checked + label {
  border-color: #999;
  background: #999;
  padding-left: 33px;
  color: white;
}
.admin-form .switch > input:checked + label:before {
  content: attr(data-on);
  left: 1px;
  top: 1px;
}
.admin-form .switch > input:checked + label:after {
  margin: 1px;
  width: 19px;
  height: 19px;
  background: white;
}
/*==================================================================
  Input Icons
===================================================================*/
.admin-form .append-icon,
.admin-form .prepend-icon {
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
}
.admin-form .append-icon .field-icon,
.admin-form .prepend-icon .field-icon {
  top: 0;
  z-index: 4;
  width: 42px;
  height: 42px;
  color: inherit;
  line-height: 42px;
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  pointer-events: none;
}
.admin-form .append-icon .field-icon i,
.admin-form .prepend-icon .field-icon i {
  position: relative;
  font-size: 14px;
}
.admin-form .prepend-icon .field-icon {
  left: 0;
}
.admin-form .append-icon .field-icon {
  right: 0;
}
.admin-form .prepend-icon > input,
.admin-form .prepend-icon > textarea {
  padding-left: 36px;
}
.admin-form .append-icon > input,
.admin-form .append-icon > textarea {
  padding-right: 36px;
  padding-left: 10px;
}
.admin-form .append-icon > textarea {
  padding-right: 36px;
}
/*==================================================================
  Buttons
-===================================================================*/
.admin-form .button {
  color: #243140;
  border: 0;
  height: 42px;
  line-height: 42px;
  font-size: 15px;
  cursor: pointer;
  padding: 0 18px;
  text-align: center;
  vertical-align: top;
  background: #DBDBDB;
  display: inline-block;
  -webkit-user-drag: none;
  text-shadow: 0 1px rgba(255, 255, 255, 0.2);
}
/*==================================================================
  Primary Button
-===================================================================*/
.admin-form .btn-primary {
  background-color: #3bafda;
}
.admin-form .btn-primary:hover,
.admin-form .btn-primary:focus {
  background-color: #3bafda;
}
.admin-form .btn-primary:active {
  background-color: #3bafda;
}
.admin-form .btn-primary,
.admin-form .btn-primary:hover,
.admin-form .btn-primary:focus,
.admin-form .btn-primary:active {
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.08);
}
/*==================================================================
  Firefox select fix - select arrow hack disabled on FF 30+
===================================================================*/
@-moz-document url-prefix() {
  .admin-form .select:before {
    content: '';
    pointer-events: none;
    -moz-transition: none;
    transition: none;
    position: absolute;
    background: #F5F5F5;
    width: 36px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    z-index: 99;
  }
  .admin-form .select > select:focus,
  .admin-form .select > select:hover,
  .admin-form .select:hover select,
  .admin-form .select:hover:before {
    background: #fff;
    -moz-transition: none;
    transition: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .admin-form .select .arrow {
    z-index: 100;
  }
  .admin-form .state-error.select > select:focus,
  .admin-form .state-error.select > select:hover,
  .admin-form .state-error.select:hover select,
  .admin-form .state-error.select:hover:before,
  .admin-form .state-error.select:before {
    background: #FEE9EA;
  }
  .admin-form .state-success.select > select:focus,
  .admin-form .state-success.select > select:hover,
  .admin-form .state-success.select:hover select,
  .admin-form .state-success.select:hover:before,
  .admin-form .state-success.select:before {
    background: #F0FEE9;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .admin-form .select .arrow:after,
  .admin-form .select .arrow:before {
    display: block;
  }
}
/*==================================================================
  ANDROID + IOS FIXES
===================================================================*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .admin-form .option,
  .admin-form .rating,
  .admin-form .switch,
  .admin-form .captcode {
    -webkit-animation: bugfix infinite 1s;
  }
  @-webkit-keyframes bugfix {
    from {
      padding: 0;
    }
    to {
      padding: 0;
    }
  }
  .admin-form .switch {
    margin-right: 10px;
    margin-bottom: 5px;
  }
  .admin-form .option {
    margin-right: 15px;
  }
}
/*==================================================================
  Responsiveness for Tablets + Smartphones
===================================================================*/
@media (max-width: 600px) {
  .admin-form .section row {
    margin: 0;
  }
  .admin-form .section row .colm {
    width: 100%;
    float: none;
    padding: 0;
  }
  .admin-form .bdl {
    border-left: 0;
  }
  .admin-form .border-right {
    border-right: 0;
  }
  .admin-form .align-right {
    text-align: left;
  }
}
/*==================================================================
  Panel Body
===================================================================*/
.admin-form .panel-body {
  padding: 25px;
  border: 0;
}
/*==================================================================
  Panel Footer
===================================================================*/
.admin-form .panel-footer {
  padding: 12px 13px;
  border: 0;
  border-top: 1px solid #DDD;
  background: #f2f2f2;
}
.admin-form .switch-primary > input:checked + label {
  background: #1b68a9;
  border-color: #1b68a9;
}
.admin-form .switch-primary > input:checked + label:after {
  color: #1b68a9;
}
.admin-form .switch-primary > input:checked:focus + label {
  background: #114D7F;
  border-color: #114D7F;
}
.admin-form .btn-primary {
  background-color: #1b68a9;
}

.admin-form .btn-primary:hover,
.admin-form .btn-primary:focus {
  background-color: #114D7F;
  border-color: #114D7F;
}
.admin-form .btn-primary:active {
  background-color: #114D7F;
}
.admin-form .btn-primary,
.admin-form .btn-primary:hover,
.admin-form .btn-primary:focus,
.admin-form .btn-primary:active {
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.08);
}

.admin-form .btn-success {
  background-color: #55803a;
}

.admin-form .switch-success > input:checked + label {
  background: #55803a;
  border-color: #55803a;
}
.admin-form .switch-success > input:checked + label:after {
  color: #55803a;
}
.admin-form .switch-success > input:checked:focus + label {
  background: #2e76d6;
  border-color: #2e76d6;
}
.admin-form .btn-success {
  background-color: #55803a;
}

.admin-form .btn-success:hover,
.admin-form .btn-success:focus {
  background-color: #69ae44;
  border-color: #69ae44;
}
.admin-form .btn-success:active {
  background-color: #55803a;
}
.admin-form .btn-success,
.admin-form .btn-success:hover,
.admin-form .btn-success:focus,
.admin-form .btn-success:active {
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.08);
}