.form-checkbox {
	position: relative;
	z-index: 1;
}

.form-checkbox > input {
    height: 20px;
    opacity: 0;
    position: absolute;
    width: 20px;
    z-index: 2;
	cursor: pointer;
}

.form-checkbox > input + .check {
    border: 1px solid #c3c2c2;
	border-radius: 2px;
    color: #00b8ce;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    position: relative;
    top: 3px;
    width: 20px;
    z-index: -1;
}

.form-checkbox > input + .check .fa {
    display: none;
    left: 2px;
    opacity: 0;
    position: absolute;
    top: 2px;
}

.form-checkbox > input:checked + span .fa {
    display: block;
    opacity: 1;
}


/*Radio and Checkbox styles*/

.checkbox-replace {
  padding-left: 20px;
}

.form-inline .checkbox-replace input[type="checkbox"] {
	margin-left: -20px;
	position: absolute;
}

.form-inline .checkbox-replace label { padding-left: 5px; }

.form-inline .checkbox-replace { margin-right: 20px; }

.form-inline .checkbox-replace:last-child { margin-right: 0; }

.checkbox-replace label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.checkbox-replace label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  margin-left: -20px;
  margin-top: 2px;
  border: 1px solid #12314f;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox-replace label::after {
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  left: 3px;
  top: 5px;
  margin-left: -20px;
  font-size: 11px;
  color: #555555;
}
.checkbox-replace input[type="checkbox"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox-replace input[type="checkbox"]:focus + label::before {
  outline: 0 none;
}
.checkbox-replace input[type="checkbox"]:checked + label::after {
  background-color: #0182e6;
  content: "";
}
.checkbox-replace input[type="checkbox"]:disabled + label {
  opacity: 0.65;
}

.checkbox-replace input[type="checkbox"]:disabled + label::before {
  background-color: #f7f7f7;
  cursor: not-allowed;
}

.checkbox-replace.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary label::before {
   border-color: #00b8ce;
}
.checkbox-primary input[type="checkbox"]:checked + label::after {
    background-color: #00b8ce;
}

.checkbox-danger label::before {
  border-color: #ef4040;
}
.checkbox-danger input[type="checkbox"]:checked + label::after{
   background-color: #ef4040;
}

.checkbox-info label::before {
   border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after {
    background-color: #5bc0de;
}

.checkbox-warning  label::before {
  border-color: #f6ce13;
}
.checkbox-warning input[type="checkbox"]:checked + label::after {
    background-color: #f6ce13;
}

.checkbox-success  label::before {
  border-color: #029b17;
}
.checkbox-success input[type="checkbox"]:checked + label::after {
    background-color: #029b17;
}

.radio-replace {
  padding-left: 20px;
}
.radio-replace  label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.radio-replace  label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  margin-left: -20px;
  margin-top: 2px;
  border: 1px solid #12314f;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.radio-replace label::after {
  background-color: #2b384c;
  border-radius: 50%;
  content: " ";
  display: inline-block;
  height: 10px;
  left: 4px;
  margin-left: -20px;
  position: absolute;
  top: 6px;
  transform: scale(0, 0);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33) 0s;
  width: 10px;
}
.radio-replace  input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.radio-replace  input[type="radio"]:focus + label::before {
  outline: 0 none;
}
.radio-replace  input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.radio-replace  input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.radio-replace  input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}
.radio-replace.radio-inline {
  margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
  background-color: #00b8ce;
}
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #00b8ce;
}
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #00b8ce;
}

.radio-danger input[type="radio"] + label::after {
  background-color: #ef4040;
}
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #ef4040;
}
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #ef4040;
}

.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de;
}


.radio-warning input[type="radio"] + label::after {
  background-color: #f6ce13;
}
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f6ce13;
}
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f6ce13;
}

.radio-success input[type="radio"] + label::after {
  background-color: #029b17;
}
.radio-success input[type="radio"]:checked + label::before {
  border-color: #029b17;
}
.radio-success input[type="radio"]:checked + label::after {
  background-color: #029b17;
}

/*Form wizard*/

.form-wizard .tab-content .pager.wizard .first a {
	margin-right: 8px;
}

.form-wizard .tab-content .pager.wizard .last a {
	margin-left: 8px;
}

.wizard-navbar {
  margin: 0 0 20px;
}
.wizard-navbar > ul {
	display: table;
	width: 100%;
	text-align: center;
	margin: 0;
	font-weight: 600;
	padding: 0;
	list-style: none outside none;
	table-layout: fixed;
}
.wizard-navbar > ul::before, .wizard-navbar > ul::after {
  content: none;
}
.wizard-navbar > ul li {
	display: table-cell;
	width: 1%;
	position: relative;
	padding: 0 10px;
}

.wizard-navbar > ul li a {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  color: #333;
  display: block;
  line-height: 39px;
  overflow: hidden;
  vertical-align: middle;
}

.wizard-navbar > ul li a span {
  background-color: #0c263e;
  border-radius: 0;
  color: #898b8f;
  display: block;
  float: left;
  height: 40px;
  left: 50%;
  line-height: 40px;
  margin-left: 0;
  margin-top: 0;
  position: static;
  text-align: center;
  transition: all 300ms ease-in-out 0s;
  width: 33px;
  z-index: 5;
}
.wizard-navbar > ul li:first-child {
  padding-left: 0;
}
.wizard-navbar > ul li a::after {
  clear: both;
  content: "";
  display: block;
}

.wizard-navbar > ul li.completed a span {
  background-color: #5f9133;
  color: #fff;
}

.wizard-navbar > ul li.active a span {
  background-color: #005ca4;
  color: #fff;
}

.wizard-navbar > ul li.active a, .wizard-navbar > ul li.completed a {
  background: #12314f none repeat scroll 0 0;
  color: #eee;
}
.wizard-options {
  margin-bottom: 20px;
}


.wizard-navbar > ul li:after {
	left: auto;
	right: 0;
}
.wizard-navbar > ul li.completed a {
  background: #80bd4a none repeat scroll 0 0;
}
.wizard-navbar > ul li.active:before,
.wizard-navbar > ul li.active:after {
	background-color: #ef4040;
}
.wizard-options .control-label {
  color: #666;
  font-weight: 600;
  margin-bottom: 5px;
}
.wizard-navbar > ul li.completed:before,
.wizard-navbar > ul li.completed:after {
	background-color: #80bd4a;
}

label.error {
	display: block;
	color: #FF0000;
	font-weight: 400;
	margin: 5px 0;
}





.up {
  border-radius: 5px;
  font-size: 15px;
  font-weight: 300;
  height: 160px;
  position: relative;
  vertical-align: middle;
}
.file-wrapper {
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding-right: 0;
  right: 0;
  top: 0;
  width:100%;
  z-index: 99;
}
.fileupload, .fileupload1 {
  background: transparent none repeat scroll 0 0;
  border: 0 none;
  color: #000;
  display: none;
  font-size: 12px;
  height: 100%;
  left: 0;
  padding: 15.1px 10px;
  position: absolute;
  text-align: left;
  top: 0;
  width: auto;
  z-index: 9999;
}
.upTxt {
  background: #fafafa none repeat scroll 0 0;
  border: 1px solid #ebebeb;
  color: #000;
  display: inline-block;
  float: left;
  font-size: 15px;
  font-weight: 400;
  height:38px;
  padding:9px 10px;
  width: 100%;
}
.wpcf7-form-control-wrap {
  position: relative;
}
.file-wrapper input {
  cursor: pointer;
  height: 38px;
  opacity: 0.01;
  position: absolute;
}
.file-wrapper .button {
  background: rgb(237, 240, 245) none repeat scroll 0 0;
  border: 0 none;
  color: rgb(18, 49, 79);
  cursor: pointer;
  display: table-cell;
  float: right;
  font-size: 15px;
  font-weight: 600;
  height: 100%;
  margin-right: 0;
  padding: 73px 10px;
  position: static;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  vertical-align: middle;
  width: 100%;
  z-index: 999;
}

.btn-blue {
  background-color: #0057a1;
  border-color: #004988;
  color: #fff;
}
.btn-red {
  background-color: #ef4040;
  border-color: #ed2828;
  color: #fff;
}
.btn-sm, .btn-group-sm > .btn {
  padding: 1px 10px;
}
th, td {
  color: #333;
}
.app-customizer {
  background: #fff none repeat scroll 0 0;
  box-shadow: 0 0 2px #aaa;
  height: auto;
  position: static;
  right: -202px;
  transition: right 0.5s ease 0s;
  width: 200px;
  z-index: 888;
}
  .app-customizer .nav-tabs > li > a {
    padding: 10px 15px;
    border-bottom-width: 1px; }
  .app-customizer .nav-tabs > li > a:hover,
  .app-customizer .nav-tabs > li > a:focus,
  .app-customizer .nav-tabs > li.active > a,
  .app-customizer .nav-tabs > li.active > a:hover,
  .app-customizer .nav-tabs > li.active > a:focus {
    border-bottom: 1px solid #188ae2; }
  .app-customizer .tab-pane {
    padding: 16px 16px 0; }
  .app-customizer .radio label {
    font-weight: 600;
    font-size: 14px; }
  .app-customizer label {
    cursor: pointer; }
  .app-customizer.open {
    right: 0; }
  .app-customizer .customizer-reset {
    padding: 16px; }


.app-customizer-toggle {
  position: absolute;
  background: #fff;
  right: 100%;
  top: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #6a6c6f;
  text-decoration: none;
  font-size: 16px;
  -webkit-box-shadow: 0 0 2px #aaa;
  box-shadow: 0 0 2px #aaa; }
  .app-customizer-toggle .fa {
    animation: rotate-me 2s infinite linear; }

    @media (min-width: 768px) {
      .app-customizer {
        top: 130px; }
        body.menubar-top .app-customizer {
          top: 170px; } }
    @media (max-width: 767px) {
      .app-customizer {
        top: 120px; }
        body.navbar-collapse-in .app-customizer {
          top: 140px; }
        .app-customizer .tab-pane {
          padding: 12px 12px 0;
          max-height: 160px;
          overflow-y: auto; }
        .app-customizer .customizer-reset {
          padding: 12px; } }
