/**
 *  THIS STYLE SHEET IS A BASE STYLE SHEET FOR ALL FORMS.
 *
 *  THIS FILE SHOULD NOT BE MODIFIED!!!
 *
 *  USE AN INDIVIDUAL FORM TEMPLATE'S STYLE SHEET TO 
 *  OVERRIDE THIS FILE OR PROVIDE OTHER FORM-SPECIFIC 
 *  CSS RULES.
 *  
 */
 
 .cms-form-wrapper {
	border: solid 1px #dee2e6 !important; 
	border-radius: 10px; 
	margin-bottom: 50px;
	margin-top: 10px; 
	padding: 20px;     
 }
 
.cms-form-progress-wrapper {
    display: block;
}

.cms-form-progress-heading { }

/* wraps the progress bar on multi-step forms */
.cms-form-progress-background {
    background-color: #b1ecff;
    border-radius: 5em;
    color: #000;
    height: 25px;
    margin-bottom: 20px;
    width: 100%;
}

.cms-form-progress-bar {
    background-color: blue;
    border-radius: 0 5em 5em 0;
    color: #FFF;
    height: 100%;
    padding-left: 5px;
    text-align: center;
}

/* ie: fields marked with asterisk..... */
.cms-form-required {
    margin-bottom: 10px;
    margin-top: 10px;
}
.cms-form-wrapper sup {
	color: #F00;
	font-size: 11px;
	font-weight: 500;
}

/* the error label that is shown below form/fields in data validation */
label.cms-form-error {
	color: #F00;
	display: block;
	font-weight: 500;
}

/* the field styling when input controls fail data validation */
input.cms-form-error,
select.cms-form-error,
textarea.cms-form-error {
	background-color: #f8d7da;
	background-color: #fbf7f7;
}

/* the multi-step and single-step form navigation buttons are initially hidden */
.cms-button-backward,
.cms-button-forward,
.cms-button-submit {
    display: none;
}

/* the multi-step and single-step form navigation buttons when they are disabled */
.cms-button-backward:disabled,
.cms-button-forward:disabled,
.cms-button-submit:disabled {
	background-color: #808080 !important;
	color: #000 !important;
	pointer-events: all;
	opacity: 1.0 !important;
}

/* the multi-step and single-step form navigation buttons when they are disabled and mouse hovered over */
.cms-button-backward:hover:disabled,
.cms-button-forward:hover:disabled,
.cms-button-submit:hover:disabled {
	cursor: not-allowed !important;
}

/* the container for showing responses from server when forms are POSTed via Ajax */
.cms-ajax-response {
	display: none;
	margin-top: 10px;
	margin-bottom: 50px;
}

/* the container that shows the Blesta user login form */
.cms-login-wrapper {
	display: none;
}

/* fields on the form */
.cms-form-body .form-control {
	height: 34px;
}

/* checkbox and radio inputs that are readonly should not be selectable by user */
.cms-form-body input[type=checkbox][readonly],
.cms-form-body input[type=radio][readonly] {
    pointer-events: none;
}

/* select inputs that are readonly should not allow option selections by user */
.cms-form-body select[readonly] option, select[readonly] optgroup {
    display: none;
}

/* labels for readonly radios/checkboxes */
.cms-form-body .form-check-input:disabled ~ .form-check-label, 
.cms-form-body .form-check-input[disabled] ~ .form-check-label {
    cursor: default;
    opacity: 1.0;
}

/* numeric/currency inputs should only be so wide */
.cms-form-body .currency { width: 100px !important; }
.cms-form-body .numeric { width: 100px !important; }

/* required field footnote */
.cms-plus-required-field-footnote {
    color: #808080;
    font-size: 8pt;
    font-style: italic;
}
.cms-plus-required-field-footnote sup {
    color: #F00;
    font-weight: 700;
}

.cms-form-body .field-group-header {
	background-color: #f0f090;
	color: #000;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 1px;
	margin-right: 1px;
}

.cms-form-body .field {
	margin-left: 1px;
	margin-right: 1px;
	margin-top: 10px;
	text-align: left !important;
}

.cms-form-body .field .text-muted {
	color: #00F !important;
	font-size: 80%;
	font-style: italic;
}