html,
body {
    background-color: #F7F7F7;
    margin: 0;
    padding: 0;
    font-family: LatoRegular, sans-serif;
    height: 100%;
    font-size: 10px;
    line-height: unset;
    color: #316275;
}

.error-page h1 {
    font-size: inherit;
    font-weight: bold;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

a,
a:hover {
    color: #0A7787;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: LatoRegular, sans-serif;
    margin: 0;
    line-height: unset;
    color: #316275;
}

.template-body,
.body-content {
    display: table;
    min-height: 100%;
    width: 100%;
    margin-bottom: -60px;
    font-size: 1.4rem;
}
@-moz-document url-prefix() {
    .template-body,
    .body-content {
        height: 100%;
    }
}

.template-body .push,
.body-content .push {
    height: 60px;
}

.template-body .template-content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.tempate_header {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
}

.tempate_header .bruin_logo_container {
    display: block;
}

.tempate_header .bruin_logo_container .bruin-logo {
    width: 240px;
    height: 100px;
    fill: #335B66;
}

.template-footer {
    position: relative;
    display: table;
    vertical-align: bottom;
    background-color: #F7F7F7;
    width: 100%;
    padding: 0px 30px 10px 30px;
    text-align: center; 
    height: 60px;
}

.template-footer .copyright {
    display: table-cell;
    vertical-align: bottom;
    color: #627984;
    font-size: 1.2rem;
}

.template-footer .bruin-bear-logo {
    display: block;
    position: absolute;
    right: 22px;
    box-sizing: border-box;
    text-align: center;
    background-image: url("/Assets/images/bruin_bear_logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    width: 50px;
    height: 45px;
    font-size: 0px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2) {
    .template-footer .bruin-bear-logo {
      background-image: url("/Assets/images/bruin_bear_logo@2x.png");
      background-size: 50px 45px;
    }
  }

.template-footer .logo-container .footer-logo-text {
    display: inline;
    font-weight: normal;
    font-style: normal;
    font-size: 1.4rem;
    color: #335B66;
    opacity: 0.5;
    text-align: right;
    vertical-align: bottom;
}

.template-footer .logo-container .footer-logo {
    display: inline-block;
    width: 100px;
    height: 40px;
    margin-bottom: -16px;
    fill: #335B66;
}

input[type=checkbox] {
    display: none;
    margin: 0px;
}

.template-checkbox {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.template-checkbox label {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #C3C3C3;
    border-radius: 3px;
    margin-bottom: 0px;
}

.template-checkbox label:after {
    font-family: mettel-icons;
    position: relative;
    display: block;
    content: '\e01b';
    width: 20px;
    height: 20px;
    background-color: #00B0D1;
    color: white;
    opacity: 0;
    padding-left: 3px;
    padding-top: 4px;
    font-size: 12px;
    border-radius: 3px;
}

.template-checkbox input[type=checkbox]:checked + label {
    border: none;
}


.template-checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.template-checkbox-disabled,
.template-checkbox:disabled,
.template-checkbox input[type=checkbox]:disabled,
.template-checkbox input[type=checkbox]:checked + label:disabled,
.template-checkbox label:disabled {
    opacity: 0.3;
}

.template-body .form-group {
    display: table;
    width: 100%;
    position: relative;
    margin-bottom: 5px;
}

.template-body .form-submit-group {
    margin-top: 15px;
}

.template-body .panel-form {
    padding: 20px;
}

.template-body .form-label,
.template-body .control-label {
    display: table-cell;
    vertical-align: middle;
    padding-right: 10px;
    width: 110px;
    text-align: right;
    font-weight: normal;
}

.template-body .form-control {
    display: table-cell;
    vertical-align: top;
    width: 100%;
    border-radius: 3px;
    border-color: #C3C3C3;
    box-shadow: none;
    color: #316275;
    height: 35px;
}

.template-body .form-control-error {
    border-color: #A52E2E;
}

.template-body .form-control:focus {
    outline: -webkit-focus-ring-color auto 5px;
    box-shadow: none;
}

.template-body .form-control-error:focus {
    outline: none;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255,0,0,.6);
}

.template-body .btn {
    background-color: #0A7787;
    border: none;
    outline-style: none;
    height: 35px;
    border-radius: 3px;
    cursor: pointer;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    line-height: normal;
    min-width: 100px;
    max-width: 200px;
    /*padding: 0px 20px 0px 20px;*/
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.4rem;
    transition: background-color 0.2s ease-out;
}

.template-body a.btn {
    line-height: 35px;
    padding: 0 15px;
}

.template-body .btn:hover {
    background-color: #096f7e;
    transition: none;
}

.template-body .btn:disabled {
    opacity: 0.3;
}

.template-body .btn:focus {
    outline: -webkit-focus-ring-color auto 5px;
}

.template-body .alert-icon {
    fill: white;
    width: 35px;
    height: 35px;
    margin: -4px 0px;
}

.new-row {
    display: inline-block;
    position: relative;
    width: 100%;
}

.panel {
    display: inline-block;
    width: 400px;
    background-color: white;
    border: 1px solid #eee;
    border-radius: 3px;
    box-shadow: none;
    margin: 0 0 10px 0;
    box-sizing: border-box;
}

.page-header {
    display: inline-block;
    width: 100%;
    padding: 0; 
    margin: 0px 0px 20px 0px;
    border: none;
    text-align: center;
}

.page-header h1,
.page-header h2,
.page-header h3 {
    display: inline-block;
    font-size: 1.4rem;
    max-width: 250px;
    word-wrap: normal;
}

.control-input {
    display: table-cell;
    vertical-align: middle;
}

.error-panel {
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 10px;
}

.no-bottom-pad {
    padding-bottom: 0px;
}

.error-panel .template-alert {
    display: block;
    width: 100%;
    background-color: #A52E2E;
    border: none;
    color: white;
    text-align: center;
    border-radius: 3px;
    padding: 10px;
    box-sizing: border-box;
}

.error-panel .template-alert h2 {
    font-size: inherit;
    font-weight: normal;
    color: white;
}


@font-face {
  font-family: 'LatoRegular';
  src: url('/fonts/lato-regular.eot');
  src: url('/fonts/lato-regular.eot?iefix') format('eot'), url('/fonts/lato-regular.woff') format('woff'), url('/fonts/lato-regular.ttf') format('truetype'), url('/fonts/lato-regular.svg#webfonttLdMzI8n') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "mettel-icons";
  src: url("/fonts/mettel-icons.eot");
  src: url("/fonts/mettel-icons.eot?#iefix") format("embedded-opentype"), url("/fonts/mettel-icons.woff") format("woff"), url("/fonts/mettel-icons.ttf") format("truetype"), url("/fonts/mettel-icons.svg?#mettel-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}