.bform_f {
  text-align: left;
  color: #005D9C;
  padding-top: 30px;
}

.sf-border > div {
  padding: 15px 40px;
  max-width: 100%;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  margin: auto;
}

.form-group {
  margin-bottom: 12px;
}

button {
  border: none;
  background: #005D9C;
  color: white;
  min-width: 50px;
  min-height: 45px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
button:hover {
  background: #007bcf;
}

label {
  color: #005D9C;
  display: block;
  padding-bottom: 5px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
    
  width: auto;
  margin: auto;
  height: 60px;
  border-radius: 0px 10px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: #eaeaea;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.steps2 { 
    grid-template-columns: 1fr 1fr !important; 
}
.steps li {
  padding: 23px 15px;
  width: 100%;
  text-align: center; 
  white-space: nowrap;
}
.steps li.active:first-child {
    border-top-left-radius: 10px;
}
.steps li.active {
  background: white;
  padding: 40px 20px 20px 20px;
  color: #005D9C;
  height: 90px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.row {
  margin-bottom: 20px;
}

.grid {
  gap: 10px;
  display: -ms-grid;
  display: grid;
}

.grid-2 {
  -ms-grid-columns: 200px 1fr;
  grid-template-columns: 200px 1fr;
}

.grid-4 {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-4 > div {
  margin-bottom: 10px;
}

.grid-1-4 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}

.btn-default {
  color: #222222;
  background-color: white;
  border-color: white;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  color: #333;
  background-color: #fff;
}
.btn-default:hover {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #ededed;
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:focus {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #ededed;
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:active {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #ededed;
  background-image: none;
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
  background-image: none;
}
.btn-default:active:hover {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active:focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default .badge {
  color: white;
  background-color: #222222;
  color: #fff;
  background-color: #333;
}
.btn-default:active.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  border: none; 
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border-radius: 4px;
}
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  color: #333;
  text-decoration: none;
}
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover {
  color: #333;
  text-decoration: none;
}
.btn .caret {
  margin-left: 0;
}
.btn .label {
  position: relative;
  top: -1px;
}
.btn .badge {
  position: relative;
  top: -1px;
}

textarea {
  height: 200px !important;
  resize: none !important;
}

table.spec-req {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
}
table.spec-req td {
  border: 1px solid #eaeaea;
  padding: 10px;
}

.form-horizontal {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn-primary {
  color: white;
  background-color: #005D9C;
  border-color: #005D9C;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  color: #fff;
}
.btn-primary:active {
  background-image: none;
  color: #fff;
  background-color: #038EEC;
  border-color: #038EEC;
  background-image: none;
}
.btn-primary:active:hover {
  color: #fff;
  background-color: #038EEC;
  border-color: #038EEC;
}
.btn-primary:active:focus {
  color: #fff;
  background-color: #038EEC;
  border-color: #038EEC;
}
.btn-primary .badge {
  color: #62CB31;
  background-color: white;
  color: #337ab7;
  background-color: #fff;
}
.btn-primary:focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

.buttons {
  padding: 50px 0px 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.buttons button {
  width: 140px;
  color: white !important;
  padding: 8px 16px;
  border: none !important;
}
.buttons button:disabled {
  cursor: not-allowed;
  background: gray !important;
}
.buttons button:first-child {
  color: black !important;
  background: #eaeaea;
}
.buttons button:last-child {
  background: #038EEC;
}

.disabled {
  opacity: 0.4;
}

.form-control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 13px 15px;
  font-size: 100%;
  border-radius: 5px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  background: #eaeaea;
  border: none;
}
.form-control:focus {
  border-color: #66afe9;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

[data-toggle=buttons] > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
[data-toggle=buttons] > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
[data-toggle=buttons] > .btn-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.container {
  width: 750px;
}
.container > .navbar-header {
  margin-right: 0;
  margin-left: 0;
}
.container > .navbar-collapse {
  margin-right: 0;
  margin-left: 0;
}

.navbar-text {
  float: left;
  margin-right: 15px;
  margin-left: 15px;
}

.navbar-left {
  float: left !important;
}

.font-bold.text-success {
  font-weight: bold;
  color: darkgreen;
}

.tbsumdim button {
  display: none !important;
}

.modal-dialog {
  width: 600px;
  margin: 30px auto;
}

.modal-content {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal-sm {
  width: 300px;
}

#rr_wizard-template {
  padding-bottom: 30px;
}

.what_to_copy .delcontrow {
  display: none;
}

.what_to_copy_m .deldimrow {
  display: none;
}

.show_insurance, .othercomments {
  display: none;
}