html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-size: calc(0.9321428571rem + 0.2571428571vw);
    font-family: "GothamSSm", Verdana, sans-serif !important;
}

@media (min-width: 1200px) {
    body {
        font-size: 1.125rem;
    }
}

.form-heading-section {
    border-bottom: 1px solid #e5e5e5;
    color: #333;
    font-size: 20px;
    font-weight: 200;
    line-height: inherit;
    margin: 1rem 0 21px;
    padding-bottom: 21px;
    font-family: "Segoe UI Light","Helvetica Neue",Helvetica,Arial,sans-serif;
}

label.control-label {
    color: #002c6c;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

label.control-label.required:before {
    content: '* ';
    color: red;
    white-space: nowrap;
    color: #a94442;
    word-break: normal;
}
.form-control {
    display: block;
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.42857;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form-control:focus {
    border-color: #69c;
    outline: 0;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.btn {
    padding: 0.5em 1.25em !important;
    border-radius: 4px;
    font-size: 15px;
}

.btn-primary {
    color: #fff !important;
    background-color: #F26334 !important;
    border: 1px solid #F26334 !important;
}
    .btn-primary:hover, .btn-primary:focus {
        background-color: #CD3C0D !important;
        border-color: #CD3C0D !important;
        outline-color: #CD3C0D !important;
    }
    .btn-primary:not(disabled) {
        cursor: pointer;
    }

.btn-default {
    color: #000 !important;
    background-color: #eee !important;
    border: 1px solid #eee !important;
}
    .btn-default:hover, .btn-default:focus {
        background-color: #ccc !important;
        border-color: #ccc !important;
    }

.form-table {
    width: 100%;
    border-spacing: 0px 10px;
    border-collapse: separate;
}
    .form-table label.control-label {
        text-align: right;
        float: right;
        padding: 7px 15px 0;
    }


.alert-danger {
    background-color: #f9f1f1;
    border-color: #f9f1f1;
    color: #000;
}

a {
    color: #00799e;
    transition: color 0.1s ease;
}
    a:hover {
        color: #002c6c;
    }


.validation-summary-errors, .alert-danger {
    background-color: #f9f1f1;
    border-color: transparent;
    color: #00799e;
    padding: 15px;
    margin: 10px 0;
}
.validation-summary-errors ul {
    list-style: none;
    padding: 0;
}

.field-validation-error {
    color: red;
}