body {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}

/* Absorb Bootstrap 3's .row negative 15px margins so the grid doesn't bleed past the viewport. */
#main {
  padding-left: 15px;
  padding-right: 15px;
}

.bg-message {
  padding: 15px;
}

#header .menuDiv {
  background-color: #29465E;
}

#honoroptions {
  padding-left: 20px;
}

.center_div {
  margin: 0 auto;
}

.filtertxt {
  color: #000;
}

.optiondisplay {
  white-space: pre;
}
.panel{
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px)
.panel {
    width: 1170px;
}
@media (min-width: 992px)
.panel {
    width: 970px;
}
@media (min-width: 768px)
.panel {
    width: 750px;
}

.has-error .control-label,
.has-error .help-block,
.has-error .form-control-feedback {
    color: #f39c12;
}

.has-success .control-label,
.has-success .help-block,
.has-success .form-control-feedback {
    color: #18bc9c;
}

/* Check Box */
/* ROUNDED TWO */
/* http://cssdeck.com/labs/css-checkbox-styles */
input[type=checkbox] {
	visibility: hidden;
}
/* Restore real checkboxes inside Bootstrap's standard .checkbox-inline /
   .checkbox-pill wrappers — the rule above is scoped to the custom
   Agree/No toggle widget used on show.html (the `.checkbox` block below). */
label.checkbox-inline input[type=checkbox],
label.checkbox input[type=checkbox] {
	visibility: visible;
}
.checkbox {
	width: 120px;
	height: 36px;
	background: #333;
	margin: 2px 6px;

	border-radius: 50px;
	position: relative;
}

.checkbox:before {
	content: 'Agree';
	position: absolute;
	top: 12px;
	left: 13px;
	height: 2px;
	color: #26ca28;
	font-size: 16px;
}

.checkbox:after {
	content: 'No';
	position: absolute;
	top: 12px;
	left: 84px;
	height: 2px;
	color: #FF110D;
	font-size: 16px;
}
.checkbox label {
	display: block;
	width: 58px;
	height: 30px;
	border-radius: 50px;

	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
	cursor: pointer;
	position: absolute;
	top: 3px;
	z-index: 1;
	left: 8px;
	background: #ddd;
}

.checkbox input[type=checkbox]:checked + label {
	left: 60px;
	background: #26ca28;
}
