/*basic reset*/
* {
    margin: 0;
    padding: 0;
}
.loader {
  position:fixed;
  top:0px;
  right:0px;
  width:100%;
  height:100%;
  background-color:#ccc;
  background-image:url('../assets/img/preloader.gif');
  background-repeat:no-repeat;
  background-position:center;
  z-index:10000000;
  opacity: 0.9;
  filter: alpha(opacity=40); 
  display:none;
  background-size: 64px 64px;
}
 .loadercontent {
	top: 55%;
    left: 45%;
    position: absolute;
	color: #FF0000;
}
.overlay-itro {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0px;
    padding: 0;
    height: 100%;
    width: 100%;
    opacity: .9;
	}
/*form styles*/
#msform {
    position: relative;
	background: transparent;
}

#msform fieldset {
    background: transparent;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    width: 100%;
	padding:20px;
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #FF0000;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 3px;
    cursor: pointer;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 1px #FF0000;
}

#msform .action-button-previous {
    width: 100px;
    background: #FF0000;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 3px;
    cursor: pointer;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
  box-shadow:0 0 0 1px #FF0000;
}

/*headings*/
.fs-title {
    font-size: 30px;
    text-transform: uppercase;
    color: #FF0000;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
	text-align: center;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 18px;
    color: #FF0000;
    margin-bottom: 20px;
	text-align: center;
}

/*progressbar*/
#progressbar {
    /*margin-bottom: 30px;*/
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: #FF0000;
    text-transform: uppercase;
    font-size: 9px;
    width: 15%;
    float: left;
    position: relative;
    letter-spacing: 1px;
	text-align: center;
	margin-top: 30px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 31px;
    display: block;
    font-size: 12px;
    color: #fff;
    background: #383333;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #FF0000;
    position: absolute;
    left: -50%;
    top: 15px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #FF0000;
    color: white;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 5px;
    top: -5px;
	margin-top:3px;
    margin-left: -20px;
    padding-left: 0px;
    padding-top: 1px;
    font-size: 11px;
    color: #FF0000;
}
.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0px;
    margin-left: -20px;
    margin-top: 3px;
    border: 1px solid #cccccc;
    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 label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 15px;
}

.checkbox-danger input[type="checkbox"]:checked+label::before, .checkbox-danger input[type="radio"]:checked+label::before {
    background-color: #FF0000;
    border-color: #FF0000;
}

.form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1;
}
input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button
	{
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.doctordiv {
    border: 1px solid #FF0000;
    margin-top: 20px;
    padding: 10px;
}
button[disabled]{
     cursor: not-allowed;
    background:#534e4e !important;	 
}

.table>tbody>tr>td, .table>tbody>tr>th  {
    padding: 8px 8px 0px 8px;
	line-height:2.2;
}
.tableImage {
    height: 64px;
    width: 80px;
    padding: 0px 0px 5px 0px;
}
.disablefielfield{
	cursor: not-allowed !important;
    background:#534e4e !important;
}
.btn-group+.btn-group {
    margin-left: 2px !important;
}
.Editor-container {
    margin-top: 0px !important;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.Editor-editor {
    height: 150px  !important;
}