.form_container{
  display: grid;
  grid-gap: 10px;
  grid-template-columns: [label] auto [input] 1fr;
}
.form_container input {
  grid-column: input;
  align-self: center;
}
.form_container select{
width: 20px;
}
.form_container label {
  grid-column: label;
  align-self: center;
}

.brdcrumbs {
    font-family: 'myriad-pro', Arial, sans-serif;
    display: block;
    background: #fff;
    overflow: hidden;
    font-size: 0.9em;
    color: #555;
    z-index: -2;   
    margin-top: -19px;
    padding: 50px 0 10px;
}

.drawer form{
	padding: 0 !important;
}

.required-color {
    color: #ce1432;
}

/* Button Style */
.btn-primary {
    background-color: #113c66 !important;
    color: white;
    border-radius: 0px;
}

.btn btn-primary add-button input-block-level form-control {
    background-color: rgba(17, 60, 102, 1);
    color: white;
    border-radius: 0px;
}

.btn.btn-primary:hover:enabled {
    background: #44c8f5 !important;
    color: #113c66;
}

.btn.input[type="button"], input[type="submit"]:hover:enabled {
    background: #44c8f5 !important;
    color: #113c66;
}

.btn, input[type="button"], input[type="submit"] {
    padding: .625rem;
    border-radius: 0px !important;
    font-size: .95em;
    background: #113c66;
    color: #fff;
}
/* End button style */

/* Hide Input Number Arrows for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Hide Input Number Arrows for Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.fieldset {
/*     border: 1px groove; */
    border: 1px solid #e0e0e0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    /* margin-top: 20px;*/
}
.legend {
    font-size: 1.1em;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
}