/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}

.ui-select-choices-row:hover {
  background-color: #f5f5f5;
}

/* Select2 theme */
/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
  border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close {
  display: none;
}

.select-locked > .ui-select-match-close {
  display: none;
}

body > .select2-container.open {
  z-index: 9999; /* The z-index Select2 applies to the select2-drop */
}

/* Handle up direction Select2 */
.ui-select-container[theme=select2].direction-up .ui-select-match,
.ui-select-container.select2.direction-up .ui-select-match {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ui-select-container[theme=select2].direction-up .ui-select-dropdown,
.ui-select-container.select2.direction-up .ui-select-dropdown {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-width: 1px; /* FIXME hardcoded value :-/ */
  border-top-style: solid;
  -webkit-box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
  margin-top: -4px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme=select2].direction-up .ui-select-dropdown .select2-search,
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
  margin-top: 4px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme=select2].direction-up.select2-dropdown-open .ui-select-match,
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
  border-bottom-color: #5897fb;
}

.ui-select-container[theme=select2] .ui-select-dropdown .ui-select-search-hidden,
.ui-select-container[theme=select2] .ui-select-dropdown .ui-select-search-hidden input {
  opacity: 0;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* Selectize theme */
/* Helper class to show styles when focus */
.selectize-input.selectize-focus {
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control.single > .selectize-input > input {
  width: 100%;
}

/* Fix line break when there's at least one item selected with the Selectize theme */
.selectize-control.multi > .selectize-input > input {
  margin: 0 !important;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
  border-color: #D44950;
}

/* Handle up direction Selectize */
.ui-select-container[theme=selectize].direction-up .ui-select-dropdown {
  -webkit-box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
  margin-top: -2px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme=selectize] input.ui-select-search-hidden {
  opacity: 0;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  width: 0;
}

/* Bootstrap theme */
/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
  border-radius: 4px !important; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-select-bootstrap .ui-select-search-hidden {
  opacity: 0;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.ui-select-bootstrap > .ui-select-match > .btn {
  /* Instead of center because of .btn */
  text-align: left !important;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices, .ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}

body > .ui-select-bootstrap.open {
  z-index: 1000; /* Standard Bootstrap dropdown z-index */
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
  position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
  pointer-events: none;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #428bca;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row > span {
  cursor: pointer;
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row > span:hover, .ui-select-bootstrap .ui-select-choices-row > span:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active > span {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled > span,
.ui-select-bootstrap .ui-select-choices-row.active.disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
  display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
  border-color: #D44950;
}

/* Handle up direction Bootstrap */
.ui-select-container[theme=bootstrap].direction-up .ui-select-dropdown {
  -webkit-box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.ui-select-bootstrap .ui-select-match-text {
  width: 100%;
  padding-right: 1em;
}

.ui-select-bootstrap .ui-select-match-text span {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

.ui-select-bootstrap .ui-select-toggle > a.btn {
  position: absolute;
  height: 10px;
  right: 10px;
  margin-top: -2px;
}

/* Spinner */
.ui-select-refreshing {
  position: absolute;
  right: 0;
  padding: 8px 27px;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

@-webkit-keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.ui-select-spin {
  -webkit-animation: ui-select-spin 2s infinite linear;
  animation: ui-select-spin 2s infinite linear;
}

.ui-select-refreshing.ng-animate {
  -webkit-animation: none 0s;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
}

/*================== Color Start ==================*/
/*Green*/
.light-green {
  background-color: #f1f8e8;
}

.green {
  background-color: #92c946;
}

.dark-green {
  background-color: #558a2e;
}

/*Orange*/
.light-orange {
  background-color: #fff1c6;
}

.orange {
  background-color: #fea000;
}

.dark-orange {
  background-color: #ff7000;
}

/*Blue*/
.light-blue {
  background-color: #e0f8fa;
}

.blue {
  background-color: #55b9db;
}

.dark-blue {
  background-color: #00828f;
}

/*Background*/
.light-background {
  background-color: #f7f7f7;
}

.disactivate-button {
  background-color: #f5f5f5;
}

.dark-background {
  background-color: #eee;
}

/*font*/
.placeholder-font {
  background-color: #ddd;
}

.bright-font {
  background-color: #999;
}

.dark-font {
  background-color: #555;
}

.title-font {
  background-color: #333;
}

/*================== Color End ==================*/
/*================== Typography Start ==================*/
/*Typography*/
h1,
.h1 {
  font-size: 80px;
  font-weight: 800;
  font-family: "Raleway", sans-serif;
  line-height: 94px;
}

h2,
.h2 {
  font-size: 42px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  line-height: 62px;
}

h3,
.h3 {
  font-size: 26px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  line-height: 38px;
}

h4,
.h4 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  line-height: 32px;
}

h5,
.h5 {
  font-size: 18px;
  font-weight: 700;
  font-family: "lato", sans-serif;
  line-height: 28px;
}

h6,
.h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "lato", sans-serif;
  line-height: 24px;
}

/*================== Typography End ==================*/
/*================== List Style Start ==================*/
/* List Style Decimal */
ul.list-style-decimal li {
  list-style-type: none;
  counter-increment: step-counter;
  font-size: 16px;
  line-height: 32px;
}

ul.list-style-decimal li:before {
  content: counter(step-counter);
  margin-right: 5px;
  font-size: 16px;
  font-family: "lato", sans-serif;
  color: #ccc;
  padding: 3px 10px 3px 0;
  font-weight: 300;
  position: relative;
  top: 1px;
}

/* List Style Dot */
ul.list-style-dot li {
  list-style-type: none;
  counter-increment: step-counter;
  font-size: 16px;
  line-height: 28px;
}

ul.list-style-dot li:before {
  content: counter(step-counter);
  position: relative;
  bottom: 5px;
  margin-right: 20px;
  font-size: 1px;
  color: #92c946;
  background-color: #92c946;
  font-weight: bold;
  padding: 3px 3px;
  border-radius: 50%;
}

/* Radio Button & Checkbox*/
ul.list-style-radio {
  list-style: none;
}

.control {
  font-size: 16px;
  position: relative;
  display: block;
  padding-left: 45px;
  cursor: pointer;
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0px;
}

.control-label {
  position: relative;
  top: -7px;
}

.control input {
  left: 0px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.control-indicator {
  position: absolute;
  top: 7px;
  left: 0px;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #eee;
}

.control-radio .control-indicator {
  border-radius: 50%;
}

.control-checkbox .control-indicator {
  border-radius: 3px;
}

/* Checked state */
.control-radio input:checked ~ .control-indicator {
  background: #fff;
  border: 2px solid #558a2e;
}

.control-checkbox input:checked ~ .control-indicator {
  background: #558a2e;
}

/* Disabled state */
.control input:disabled ~ .control-indicator {
  pointer-events: none;
  background: #f7f7f7;
  border: 1px solid #eee;
}

/* Check mark */
.control-indicator:after {
  position: absolute;
  display: none;
  content: "";
}

/* Show check mark */
.control input:checked ~ .control-indicator:after {
  display: block;
}

/* Radio button inner circle */
.control-radio .control-indicator:after {
  top: 7px;
  left: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #558a2e;
}

/* Disabled circle colour */
.control-radio input:disabled ~ .control-indicator:after {
  background: #ddd;
  top: 8px;
  left: 8px;
}

/* Checkbox tick */
.control-checkbox .control-indicator:after {
  top: 4px;
  left: 9px;
  width: 9px;
  height: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

/* Disabled tick colour */
.control-checkbox input:disabled ~ .control-indicator:after {
  border-color: #ddd;
}

.control-list {
  padding-left: 20px;
}

/*================== Tab Style Start ==================*/
.tab-style ul {
  height: 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid #eee;
  display: table;
}

.tab-style ul li {
  display: table-cell;
  vertical-align: middle;
  margin-right: 60px;
  font-size: 18px;
  font-family: "lato", sans-serif;
  border-top: 5px solid #fff;
  padding: 30px 0 0;
  color: #999;
}

.tab-style ul li.active {
  border-top: 5px solid #558a2e;
  color: #558a2e;
}

/*================== Tab Style End ==================*/
/*================== Button Style Start ==================*/
.button {
  text-align: center;
  border: 1px solid transparent;
  color: #fff;
  font-size: 24px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  border-radius: 3px;
  padding: 7px 35px;
  display: inline-block;
  margin-bottom: 0;
  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;
}
.button:hover {
  opacity: 0.8;
}

/*Activate Shadow*/
.active {
  border-radius: 8px;
}

.button span.glyphicon {
  position: relative;
  top: 3px;
  margin-right: 10px;
}

/*Color Definition*/
.button.negative {
  background: #fea000;
}

.button.positive {
  background: #92c946;
}

.button.standard {
  background: #333;
}

.button.negative {
  background: #999999;
}

.button:disabled {
  background: #d5d5d5;
  color: #969696;
}

.button:disabled:hover {
  opacity: 1;
}

/*Big button and Gradient*/
.button-big {
  border: none;
  font-size: 32px;
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  padding: 0 20px;
  background: #92c946; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(linear, left top, right bottom, from(#92c946), to(#55b9db));
  background: linear-gradient(to bottom right, #92c946, #55b9db); /* Standard syntax */
  display: inline-block;
  margin-bottom: 0;
  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;
}

.button.login {
  width: 460px;
}

.button.big:active {
  background: #558a2e; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(linear, left top, right bottom, from(#00828f), to(#558a2e));
  background: linear-gradient(to bottom right, #00828f, #558a2e); /* Standard syntax */
  -webkit-box-shadow: 0 9px 17px 0 rgba(0, 0, 0, 0.15), 0 7px 20px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 9px 17px 0 rgba(0, 0, 0, 0.15), 0 7px 20px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: background 2s ease-in;
  transition: background 2s ease-in;
}

/*Switcher Style*/
.button.switcher {
  padding: 5px 15px;
  font-size: 18px;
  font-weight: 300;
  font-family: "lato", sans-serif;
  color: #999;
  border: 1px solid #eee;
  background: #fff;
}

.button.switcher.active {
  background: #55b9db;
  border: 1px solid #fff;
  color: #fff;
}

/*Icon Button Style*/
.button.icon-btn {
  background: none;
  padding: 0;
  margin: 0;
  width: 25px;
  height: 25px;
}

.button.icon-btn span.standard {
  color: #55b9db;
}

.button.icon-btn span.negative {
  color: #fea000;
}

.button.icon-btn span.positive {
  color: #92c946;
}

/*small Button Style*/
.small-btn {
  padding: 3px 15px 4px 15px;
  font-size: 18px;
  font-weight: 300;
  font-family: "lato", sans-serif;
  color: #fff;
}

.small-btn.negative {
  background-color: #fea000;
}

.small-btn.postive {
  background-color: #92c946;
}

.button_ghost-negative {
  color: #ccc;
  border: 1px solid #eee;
}

.button_ghost-negative span.glyphicon {
  color: #ccc;
}

/*================== Button Style End ==================*/
/*================== Input Style Start ==================*/
label {
  font-size: 14px;
  font-family: "lato", sans-serif;
  color: #555;
  font-weight: 300;
  display: block;
}

input, textarea {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 3px;
  width: 100%;
  padding: 0 10px;
  font-family: "lato", sans-serif;
  font-size: 18px;
  color: #555;
  font-weight: 400;
}

.csv-generated {
  font-size: 16px;
  color: #92c946;
  font-weight: 300;
}

.csv-failed {
  font-size: 16px;
  color: #c94646;
  font-weight: 300;
}

/*Placeholder*/
::-webkit-input-placeholder {
  color: #ddd;
  font-weight: 300;
}

::-moz-placeholder {
  color: #ddd;
  font-weight: 300;
}

:-ms-input-placeholder {
  color: #ddd;
  font-weight: 300;
}

:-moz-placeholder {
  color: #ddd;
  font-weight: 300;
}

/*Color*/
input.active {
  border: 1px solid #55b9db;
}

input.success {
  border: 1px solid #92c946;
}

input.error {
  border: 1px solid #fea000;
}

input:disabled {
  background: #f5f5f5;
  color: #dddddd;
}

/*================== Input Style End ==================*/
.Administrator {
  background-color: #19a69a !important;
}

.Contractor {
  background-color: #8c6e63 !important;
}

.HSEManager {
  background-color: #fea000 !important;
}

.Manager {
  background-color: #55b9db !important;
}

.Supervisor {
  background-color: #ab46bc !important;
}

.Visitor {
  background-color: #cddc39 !important;
}

.Worker {
  background-color: #92c946 !important;
}

.Administrator_check .control-checkbox input:checked ~ .control-indicator {
  background-color: #19a69a !important;
}
.Administrator_check .control-checkbox input:checked ~ .control-indicator, .Administrator_check .control-radio .control-indicator:after {
  background-color: #19a69a !important;
}
.Administrator_check .control-radio input:checked ~ .control-indicator {
  border-color: #19a69a !important;
}
.Administrator_check .control-indicator {
  border-color: #19a69a !important;
}

.Contractor_check .control-checkbox input:checked ~ .control-indicator {
  background-color: #8c6e63 !important;
}
.Contractor_check .control-checkbox input:checked ~ .control-indicator, .Contractor_check .control-radio .control-indicator:after {
  background-color: #8c6e63 !important;
}
.Contractor_check .control-radio input:checked ~ .control-indicator {
  border-color: #8c6e63 !important;
}
.Contractor_check .control-indicator {
  border-color: #8c6e63 !important;
}

.HSEManager_check .control-checkbox input:checked ~ .control-indicator {
  background-color: #fea000 !important;
}
.HSEManager_check .control-checkbox input:checked ~ .control-indicator, .HSEManager_check .control-radio .control-indicator:after {
  background-color: #fea000 !important;
}
.HSEManager_check .control-radio input:checked ~ .control-indicator {
  border-color: #fea000 !important;
}
.HSEManager_check .control-indicator {
  border-color: #fea000 !important;
}

.Manager_check .control-checkbox input:checked ~ .control-indicator {
  background-color: #55b9db !important;
}
.Manager_check .control-checkbox input:checked ~ .control-indicator, .Manager_check .control-radio .control-indicator:after {
  background-color: #55b9db !important;
}
.Manager_check .control-radio input:checked ~ .control-indicator {
  border-color: #55b9db !important;
}
.Manager_check .control-indicator {
  border-color: #55b9db !important;
}

.Supervisor_check .control-checkbox input:checked ~ .control-indicator {
  background-color: #ab46bc !important;
}
.Supervisor_check .control-checkbox input:checked ~ .control-indicator, .Supervisor_check .control-radio .control-indicator:after {
  background-color: #ab46bc !important;
}
.Supervisor_check .control-radio input:checked ~ .control-indicator {
  border-color: #ab46bc !important;
}
.Supervisor_check .control-indicator {
  border-color: #ab46bc !important;
}

.Visitor_check .control-checkbox input:checked ~ .control-indicator {
  background-color: #cddc39 !important;
}
.Visitor_check .control-checkbox input:checked ~ .control-indicator, .Visitor_check .control-radio .control-indicator:after {
  background-color: #cddc39 !important;
}
.Visitor_check .control-radio input:checked ~ .control-indicator {
  border-color: #cddc39 !important;
}
.Visitor_check .control-indicator {
  border-color: #cddc39 !important;
}

.Worker_check .control-checkbox input:checked ~ .control-indicator {
  background-color: #92c946 !important;
}
.Worker_check .control-checkbox input:checked ~ .control-indicator, .Worker_check .control-radio .control-indicator:after {
  background-color: #92c946 !important;
}
.Worker_check .control-radio input:checked ~ .control-indicator {
  border-color: #92c946 !important;
}
.Worker_check .control-indicator {
  border-color: #92c946 !important;
}

/*GET RID OF MODAL*/
.section_background {
  z-index: 6;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  font-family: "brandon-grotesque";
  background-image: url("/Content/Canvas/Static.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section_shadow {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: #4FA7D3;
  opacity: 0.8;
  z-index: 6;
}

/*		Page Specific Elements			*/
.page_cover {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: inline-block;
  text-align: center;
  z-index: 30;
}

.page_cover_filler {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.page_cover_contents {
  display: inline-block;
  vertical-align: middle;
  z-index: 25;
  min-width: 100px;
}

.section {
  background-color: #fff;
}

.section_header {
  font-size: 27px;
  line-height: 46px;
  padding: 10px 0px;
  margin: -10px 0px 20px 0px;
}

.injurymap_image {
  background-image: url("/Content/Body.jpg");
  width: 100%;
  border: 1px solid #ccc;
}

.injurymap_selector {
  /*display:inline-block;*/
  display: none;
  position: absolute;
}

.injurymap_selector_injuries {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
  position: absolute;
  width: 500px;
  z-index: 10;
  background-color: white;
}

.injurymap_selector_open .injurymap_selector_injuries {
  -webkit-transition-property: max-height;
  transition-property: max-height;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  max-height: 2000px;
  padding: 10px;
  border: 1px solid #ccc;
}

.injurymap_selector_injuries .button {
  width: 50%;
}

.injurymap_markers {
  display: inline-block;
  position: absolute;
  border-right: 1px solid #ccc;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.injurymap_marker {
  opacity: 0.4;
  position: absolute;
  display: inline-block;
  width: 3%;
  height: 3%;
  margin-top: -1.5%;
  margin-left: -1.5%;
  border-radius: 100px;
  background-color: #C00;
}

.injurymap_selector_button {
  background-color: white;
}
.injurymap_selector_button:hover {
  background-color: #ccc;
}

.injury_remove {
  top: 4px;
}

.page-break-auto {
  page-break-inside: avoid;
}

body, html {
  height: 100%;
  min-height: 100%;
  font-family: "lato", sans-serif;
}

a:hover, a:focus, button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  height: 80px;
}

hr {
  margin-bottom: 40px;
}

input[type=file] {
  display: none;
}

.glyphicon {
  top: 0px;
}

h2 {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  #parent {
    height: 100%;
  }
}
.error {
  border: 1px solid #fea000;
  border-radius: 3px;
  margin-bottom: 4px;
}

.button_circle {
  border-radius: 50%;
  font-size: 9px;
  padding: 5px;
  margin-right: 6px;
  border: 1px solid transparent;
}

.big_button_label {
  line-height: 54px;
}

.small_button_label {
  line-height: 47px;
}

.button-white {
  background: #fff;
  color: #555;
  border: 1px solid #aaa;
}

.circle_icon-white {
  color: #fff;
  border: 1px solid #aaa;
}

.font-white {
  color: #fff;
}

.display_report_button {
  background: #fea000;
}

.clickable {
  cursor: pointer;
}

.button_ghost, .comment_button, .button_ghost-small {
  cursor: pointer;
  background: #fff;
  border: 1px solid #92c946;
  color: #ccc;
  border-radius: 3px;
  padding: 7px 20px;
  font-size: 18px;
  font-family: "lato", sans-serif;
  font-weight: 400;
}

.button_ghost-small {
  padding: 0px 10px;
  font-size: 12px;
  font-weight: 700;
}

.button_margin-x {
  margin-left: 5px;
  margin-right: 5px;
}

.vh {
  min-height: 100%;
  background-color: #f7f7f7;
}

.site-container {
  margin-left: 0px;
  margin-right: 0px;
}

.inline-vertical-align {
  display: inline-block;
  vertical-align: middle;
}

.body-content {
  background-color: #fff;
  border-radius: 5px;
  padding: 0 20px 80px 20px;
}

.body-padding-y {
  padding-top: 20px;
}

.body-padding-no-y {
  padding-top: 0;
  padding-bottom: 0;
}

.body-padding-x {
  padding-left: 20px;
  padding-right: 20px;
}

.list_container {
  border: 1px solid #aaa;
  margin-top: 20px;
  margin-bottom: 20px;
}

.list_item {
  display: inline-block;
}

.user_image {
  border-radius: 50%;
}

.list_image {
  text-align: center;
  float: left;
  width: 100px;
  height: 100px;
  margin: 0;
  padding: 16px;
}
.list_image img {
  width: 100%;
  height: 100%;
}

.company_image {
  text-align: center;
  float: left;
  width: 100px;
  height: 100px;
  margin: 0;
  padding: 16px;
  line-height: 115px;
}
.company_image img {
  width: 100%;
  height: 100%;
}

.company_row {
  padding: 11px;
  padding-top: 8px;
  border-left: 1px solid #aaa;
}
.company_row:first-child {
  border-bottom: 1px solid #aaa;
}

.billing_detail_company_row {
  padding: 11px;
  padding-top: 8px;
}
.billing_detail_company_row:first-child {
  border-bottom: 1px solid #aaa;
}

.list_desc {
  padding-left: 100px;
  display: block;
}

.list_row {
  padding: 11px;
  height: 50px;
  padding-top: 8px;
  border-left: 1px solid #aaa;
}
.list_row:first-child {
  border-bottom: 1px solid #aaa;
}

.billing_detail_list_row {
  height: 50px;
  padding: 8px 11px 11px;
}
.billing_detail_list_row:first-child {
  border-bottom: 1px solid #aaa;
}

.list_header {
  margin-top: 0px;
  margin-bottom: -1px;
}

.filter_container {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 3px;
}

.block_img {
  border-right: 1px solid #aaa;
  display: inline-block;
  padding: 0 10px;
  text-align: center;
}
.block_img img, .block_img video {
  width: 120px;
  height: 120px;
  vertical-align: middle;
}
.block_img-large {
  height: 208px;
  line-height: 208px;
}

.block_row {
  line-height: 40px;
  vertical-align: middle;
  border-bottom: 1px solid #aaa;
}
.block_row label {
  margin-bottom: 0;
}
.block_row:last-child {
  border-bottom: none;
}
.block_row-small {
  line-height: 29px;
}

.training_label {
  line-height: 47px;
}

.search_container {
  position: relative;
}

.search_icon {
  position: absolute;
  top: 6px;
  font-size: 34px;
  color: #ddd;
}

.search_icon_right {
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 34px;
  color: #ddd;
}

.search_box {
  padding-left: 50px;
}

.date_picker {
  position: relative;
  cursor: pointer;
}
.date_picker .date_picker_icon {
  right: 10px;
  top: 50%;
  margin-top: -6px;
  position: absolute;
}
.date_picker .date_expiry_icon {
  border-radius: 3px;
  width: 116px;
  right: 0;
  top: 50%;
  position: absolute;
}

.dropdown_container {
  padding: 10px 10px 20px 10px;
}
.dropdown_container:last-child {
  padding-right: 0px;
}

.dropdown-button, .dropdown-button-small {
  width: 100%;
  color: #555;
  cursor: pointer;
  position: relative;
  background: #fff;
  border: 1px solid #aaa;
  white-space: normal;
}

.dropdown_icon {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  font-size: 16px;
  z-index: 999;
}

.dropdown-menu {
  width: 100%;
  max-height: 270px;
  overflow-y: auto;
}

.no-label {
  padding-top: 20px;
}

.select-item, .selected-item {
  padding: 10px;
}

.col-no-pad {
  padding-left: 0px;
  padding-right: 0px;
}

.input_content {
  padding-top: 20px;
  padding-bottom: 20px;
}

.input_content-nopad {
  padding-top: 0;
  padding-bottom: 0;
}

.input_section {
  border: 1px solid #aaa;
  border-radius: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.input_section h3, .input_section h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 15px;
  border-bottom: 1px solid #aaa;
}

.tab_button {
  text-align: center;
  border: 0;
  background: #fff;
  color: #999;
  font-size: 24px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  padding: 7px 35px;
  display: inline-block;
  margin-bottom: 0;
  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;
  border-top: 3px solid #fff;
}

.border-top {
  border-top: 1px solid #aaa;
}

.padding-top-sm {
  padding-top: 20px !important;
}

.padding-bot-sm {
  padding-bottom: 20px !important;
}

.padding-left-sm {
  padding-left: 20px !important;
}

.padding-right-sm {
  padding-right: 20px !important;
}

.padding-right-md {
  padding-right: 40px !important;
}

.margin-top-sm {
  margin-top: 20px !important;
}

.margin-bot-sm {
  margin-bottom: 20px !important;
}

.margin-left-sm {
  margin-left: 20px !important;
}

.margin-right-sm {
  margin-right: 20px !important;
}

.margin-left-xs {
  margin-left: 10px !important;
}

.margin-right-xs {
  margin-right: 10px !important;
}

.margin-top-xs {
  margin-top: 10px !important;
}

.margin-bottom-xs {
  margin-bottom: 10px !important;
}

.margin-left-none {
  margin-left: 0 !important;
}

.margin-right-none {
  margin-right: 0 !important;
}

.margin-top-none {
  margin-top: 0 !important;
}

.margin-bottom-none {
  margin-bottom: 0 !important;
}

.fileUpload:hover {
  border: 2px dashed #0c0;
}

.fileUpload.hover {
  border: 2px dashed #0c0;
}

.light {
  border-color: #ddd;
  color: #fff;
}

.ghost_light {
  border-color: #ddd;
  color: #ddd;
}

.number_circle {
  color: #555;
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
  padding: 4px;
  border-radius: 50%;
  color: white;
  padding: 7px;
  width: 42px;
  height: 42px;
  display: inline-block;
  background-color: #f7f7f7;
  vertical-align: middle;
}

.section_home {
  text-align: center;
  z-index: 1;
  color: #555;
}

.section_contents {
  display: inline-block;
  line-height: normal;
  vertical-align: middle;
  padding: 0px 50px;
  padding-top: 70px;
}

.circle {
  line-height: 14px;
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
}

.checkbox_item {
  margin-bottom: 0px;
}

input[type=radio], input[type=checkbox] {
  height: 40px;
  top: 0px;
}

@media (min-width: 768px) {
  .site-container {
    margin-left: 40px;
    margin-right: 40px;
  }
  .body-content {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 80px;
  }
  .section_contents {
    max-width: 750px;
  }
  .home_menu_fixed, .home_menu_absolute {
    padding: 20px 60px;
  }
}
.table_header {
  padding: 10px 20px;
  color: #999;
  border: 1px solid #aaa;
  border-top: none;
}
.table_header:first-child {
  border-left: none;
  border-right: none;
}
.table_header:nth-child(3) {
  border-left: none;
  border-right: none;
}

.table_item {
  padding: 10px 20px;
  color: #555;
  border: 1px solid #aaa;
  min-height: 42px;
  border-top: none;
}
.table_item {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.table_item:first-child {
  border-left: none;
  border-right: none;
}
.table_item:nth-child(3) {
  border-left: none;
  border-right: none;
}

a {
  color: #555;
}

.text-info {
  color: #fff;
}

.table_button {
  padding: 3px 20px 4px 20px;
  color: #999;
  border-bottom: 1px solid #aaa;
}

.wide_container {
  border-top: 1px solid #aaa;
  padding: 10px;
}
.wide_container .wide_button {
  margin-top: 5px;
  width: 100%;
}

.text_link {
  color: #55b9db;
  text-decoration: underline;
  cursor: pointer;
}

.font-white {
  color: white;
}

.font-orange {
  color: #fea000;
}

.font-small {
  font-size: 14px;
}

.bg-grey {
  background-color: #f7f7f7;
}

.l-header {
  padding: 3px 10px;
  margin: 3px;
  border-radius: 3px;
  display: inline-block;
}

.border-grey {
  border: 1px solid #ddd;
}

table.table_nopad {
  margin-bottom: 0;
}

.ol-style {
  counter-reset: item;
  padding-left: 10px;
}
.ol-style li {
  display: block;
}
.ol-style li:before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #ddd;
  padding-right: 10px;
}

.comment_container-padded {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.dropdown-button-small {
  padding-left: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.textbox-small {
  height: 35px;
}

.textbox-padded {
  margin-left: 20px;
  margin-right: 20px;
}

hr.hr_nopad {
  margin-top: 1px;
  margin-bottom: 1px;
}

.list_button_container {
  text-align: right;
}

.label-dark {
  color: #555;
}

.dashboard_width {
  width: 100%;
  position: relative;
  padding-right: 50px;
}

.not_clickable {
  cursor: not-allowed !important;
}

.lg-no-pad {
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 1200px) {
  .lg-no-pad {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 768px) {
  .pull-right {
    float: none !important;
  }
  .body-content {
    padding: 0 0 80px 0;
  }
  .list_button_container {
    text-align: left;
  }
  .list_row:first-child {
    border-bottom: none;
  }
  .block_img-large {
    height: auto;
  }
  .comment_time {
    width: 100%;
    text-align: left !important;
  }
  .no_right_border {
    border-right: none !important;
  }
}
.hazard_value {
  color: #999;
}

.Saved, .Saving {
  background: #fea000 !important;
  color: #fff !important;
}

.register_nav_icon {
  padding: 9px 0px;
}

.checklist_nav_icon {
  padding: 6px 0px;
}

.confirm_section {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .section_contents {
    max-width: 970px;
  }
  .home_menu_fixed, .home_menu_absolute {
    padding: 20px 100px;
  }
}
@media (min-width: 1200px) {
  .section_contents {
    max-width: 870px;
  }
}
@media print {
  a[href]:after {
    content: none !important;
  }
}
input:disabled {
  color: #555;
}

.mobile_links_container {
  margin-top: 30px;
  text-align: center;
}

.mobile_market_link {
  padding: 0 !important;
}
.mobile_market_link img {
  width: 180px;
}

.checklist_desc_container {
  margin-top: 25px;
  padding: 10px;
  border: 2px solid #fea000;
  border-radius: 3px;
}

.padding-zero {
  padding: 0;
}

.small_dropdown {
  width: 200px;
}

.padding-right-col-sm {
  padding-right: 15px !important;
}

.show_password_icon {
  position: absolute;
  right: 20px;
  top: 45px;
}

.clear {
  clear: both;
}

.margin-top-md {
  margin-top: 24px;
}

.p-t-xs {
  padding-top: 5px;
}

.truncating_header {
  width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

.incident_equipment {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text-center {
  text-align: center;
}

.incident_injury {
  position: relative;
  padding: 0;
}

/*!
 * angular-loading-bar v0.9.0
 * https://chieffancypants.github.io/angular-loading-bar
 * Copyright (c) 2016 Wes Cruver
 * License: MIT
 */
/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  transition: 350ms linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 350ms;
  transition: width 350ms;
  background: #29d;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
}

/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: 0.45;
  -ms-box-shadow: #29d 1px 0 6px 1px;
  -webkit-box-shadow: #29d 1px 0 6px 1px;
  box-shadow: #29d 1px 0 6px 1px;
  border-radius: 100%;
}

#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 10002;
  top: 50%;
  left: 50%;
  padding: 0px;
  margin-left: -50px;
  margin-top: -50px;
}
#loading-bar-spinner .spinner-background {
  width: 100px;
  height: 100px;
  background-image: url("../../Content/Canvas/logo.png");
  background-color: #eee;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#loading-bar-spinner .spinner-icon {
  width: 200px;
  height: 200px;
  position: relative;
  top: -50px;
  left: -50px;
  border: solid 3px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  padding: 20px;
  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  animation: loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-bar-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
input, textarea {
  border-color: #aaa;
  color: #000;
  background-color: #f3f2ff;
}

label, .training_button {
  font-weight: 700 !important;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #888;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #888;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #888;
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #888;
}

.dropdown-button, .dropdown-button-small, .button-white {
  border-color: #aaa;
}

.light {
  background: #F44336;
  border-color: #F44336;
}

.font-white {
  color: #fff !important;
}
.font-white a {
  color: #fff !important;
}

.control-indicator {
  border-color: #aaa;
  border-width: 2px;
}

.circle_icon-white, hr {
  border-color: #aaa;
}

.tab_button {
  border: 2px solid;
  background: #fff;
  color: #fff;
  margin-bottom: 5px;
}

.upload_button {
  margin-top: 10px;
  width: 100%;
}

.file_delete {
  border-radius: 3px;
}

.input_section,
.single_header,
.list_container,
#pagination .pagination_border,
.register_header, .register_container {
  border-color: #aaa !important;
}

.register_label {
  border-left-color: #aaa !important;
  border-right-color: #aaa !important;
}

.input_section h3, .input_section h4,
.report_filter_container,
.register_body {
  border-bottom-color: #aaa !important;
}

.report_item, .report_container, .accordian_number {
  border-left-color: #aaa !important;
  border-top-color: #aaa !important;
  border-right-color: #aaa !important;
  border-bottom-color: #aaa !important;
}

.half_line_height {
  line-height: 25px;
}

@media (max-width: 768px) {
  .tab_button {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .settings_button_container {
    text-align: left !important;
  }
}
.single_header {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 15px;
  border: 1px solid #aaa;
}

.register_container {
  margin-top: 30px;
  border: 1px solid #aaa;
}
.register_contained_container {
  margin-top: 30px;
  border-top: 1px solid #555;
}
.register_header {
  padding: 10px;
  border-bottom: 1px solid #aaa;
  background-color: #f7f7f7;
}
.register_header_label {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
  color: #555;
}
.register_icon {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
  color: #fff;
  font-family: "lato", sans-serif;
  font-size: 18px;
  vertical-align: middle;
}
.register_label {
  font-size: 16px;
  line-height: 50px;
  vertical-align: middle;
  color: #555;
  border-right: 1px solid #aaa;
  border-left: 1px solid #aaa;
  margin-left: -1px;
  padding: 10px;
}
.register_area_label {
  line-height: 85px;
}
.register_input_container {
  padding: 10px;
}
.register_body {
  border-bottom: 1px solid #aaa;
}
.register_item {
  color: #999;
}
.register_profile {
  width: 42px;
  height: 42px;
  margin-right: 5px;
  padding: 7px;
  border-radius: 50%;
  font-size: 28px;
}
.register_subheader {
  background: #F44336;
  padding: 20px 0px;
  font: "lato", sans-serif;
  color: white;
}
.register_description {
  font-weight: 400;
  font-size: 14px;
}
.register_text {
  line-height: 1.5;
}
.register_no_border {
  border: none;
}
.register_no_padding {
  padding-left: 0;
}

.comment_container, .comment_container-padded {
  padding: 10px;
  border-bottom: 1px solid #555;
}
.comment_single {
  border-bottom: 1px solid #555;
}
.comment_time {
  min-height: 42px;
  line-height: 42px;
  text-align: right;
}
.comment_button_container {
  text-align: right;
  padding: 10px;
}
.comment_button {
  border-radius: 3px;
}

.files_container {
  padding: 10px;
}
.files_desc {
  line-height: 32px;
}
.files_button {
  padding: 3px 12px 4px 12px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .register_label {
    line-height: 25px;
    border-right: none;
  }
}
.training_container {
  padding: 10px;
  border-bottom: 1px solid #aaa;
}
.training_title {
  line-height: 47px;
}
.training_col-5 {
  width: 20%;
}
.training_button {
  margin: 10px 10px;
}
.training_row_header {
  padding: 10px;
  border-bottom: 1px solid #aaa;
}
.training_document_container {
  padding: 30px;
}

.training_list_container {
  padding: 10px;
  border-bottom: 1px solid #aaa;
}
.training_list_title_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.training_list_title {
  line-height: 47px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 5px;
}
.training_list_col-5 {
  width: 20%;
}
.training_list_button {
  margin: 10px 10px;
}
.training_list_row_header {
  padding: 10px;
  border-bottom: 1px solid #aaa;
}
.training_list_document_container {
  padding: 30px;
}

.uib-daypicker table {
  margin: 0px auto;
  font-family: "lato", sans-serif;
}
.uib-daypicker table thead > tr:first-child {
  border-bottom: 1px solid #fff;
}
.uib-daypicker table th {
  padding: 10px 0px 5px 0px;
}
.uib-daypicker table small {
  color: #777;
}
.uib-daypicker .uib-right, .uib-daypicker .uib-left, .uib-daypicker .uib-title {
  border: none;
}
.uib-daypicker .btn {
  border: none;
  padding: 8px 10px;
  font-size: 16px;
  color: #fff;
}
.uib-daypicker .active {
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.uib-datepicker-popup.dropdown-menu {
  width: auto;
  max-height: none;
}

.accordian a:hover, .accordian a:focus {
  color: #555;
}
.accordian h3, .accordian h4, .accordian ul {
  padding: 0px;
}
.accordian .panel-heading {
  padding: 0px;
}
.accordian .panel {
  border: none;
  margin-top: 0px !important;
}
.accordian .panel-body {
  border-top: none !important;
  padding: 0px;
  border-bottom: 1px solid #aaa !important;
}
.accordian .panel-group {
  margin-bottom: 0px;
}
.accordian_row:first-child {
  border-top: 1px solid #aaa;
}
.accordian_header {
  position: relative;
}
.accordian_number {
  display: inline-block;
  padding: 10px 20px;
  width: 57px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #aaa;
}
.accordian_container {
  padding: 0px 20px;
  display: inline-block;
  line-height: 52px;
}
.accordian_container_border {
  padding: 0px 20px;
  display: inline-block;
  line-height: 52px;
  border-left: 1px solid #aaa;
}
.accordian_button_container {
  width: 250px;
  padding: 0px 20px;
  display: inline-block;
}
.accordian_button {
  width: 100%;
  padding: 0px 20px;
  display: inline-block;
}
.accordian_open_icon {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
}
.accordian_desc_col {
  padding-left: 0px;
  padding-right: 0px;
  border-right: 1px solid #aaa;
}
.accordian_content_col {
  padding: 10px 20px;
}
.accordian_body {
  padding: 10px 20px 10px 57px;
  background: #f7f7f7;
}
.accordian_label {
  color: #999;
}

.ui-select-bootstrap > .ui-select-match > .btn {
  outline: 0;
  padding: 9px;
  height: 40px;
}

.ui-select-search {
  padding: 9px;
  height: 40px;
  width: 100%;
}

.page_background_2 {
  width: 100%;
  min-height: 100%;
  position: relative;
  text-align: center;
}

.page_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
  margin-top: -145px;
  background-color: #f7f7f7;
  opacity: 0.8;
  padding: 50px;
}
.page_logo .logo {
  width: 150px;
}
.page_logo hr {
  border-top-color: #555;
}

.page_back_button {
  margin-top: 30px;
  text-align: left;
  position: absolute;
  width: 60%;
  left: 50%;
  margin-left: -30%;
}

.button_vertical-center {
  display: inline-block;
  vertical-align: middle;
}

.button--auth {
  padding: 14px 19px;
}

.auth_header {
  text-align: center;
}

.auth_sub_header {
  color: #555;
}

.auth_form_input {
  margin: 20px 0px;
}

.auth_form_style {
  width: 70%;
  margin: 0px auto;
  padding: 0px 50px;
}
.auth_form_style .button.small-btn.negative {
  font-size: 14px;
}

.auth_call-to-action {
  margin: 20px 0px;
  width: 100%;
  font-size: 32px;
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  height: 80px;
  padding: 0 20px;
  background: #92c946;
  background: -webkit-gradient(linear, left top, right bottom, from(#92c946), to(#55b9db));
  background: linear-gradient(to bottom right, #92c946, #55b9db);
}

.input_block {
  margin-bottom: 20px;
}

.auth_forgot-password {
  width: 100%;
  margin: 20px auto;
  font-size: 20px;
  font-weight: 500;
  font-family: "lato", sans-serif;
  border-radius: 3px;
  padding: 8px 20px;
}

.help_video {
  margin-top: -14px;
  padding-right: 0;
}

.info-box {
  position: relative;
  width: 100%;
  white-space: normal;
}
.info-box .glyphicon-remove {
  position: absolute;
  right: 3px;
  top: 3px;
  font-size: 11px;
  cursor: pointer;
}

.auth_table_container {
  display: table;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .auth_table_container .col-sm-6 {
    float: none;
  }
}

.auth_table_content {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}
.auth_table_content:first-child {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(85, 185, 219, 0.8)), to(rgba(146, 201, 70, 0.8))), url(/Content/Canvas/Static.jpg);
  background-image: linear-gradient(rgba(85, 185, 219, 0.8), rgba(146, 201, 70, 0.8)), url(/Content/Canvas/Static.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 768px) {
  .page_logo {
    padding: 50px 10px;
  }
  .auth_form_style {
    padding: 50px 0px;
  }
  .auth_table_content, .auth_table_container {
    display: initial;
  }
}
.navbar_header {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
}

.nav_logo {
  width: 180px;
}

.nav_item-container {
  list-style: none;
  padding-left: 0px;
}
.nav_item-container:first-child {
  padding: 3px 20px 3px 20px;
}
.nav_item-container a {
  color: #fff;
  font-size: 18px;
  font-family: "lato", sans-serif;
}
.nav_item-container a:hover, .nav_item-container a:focus {
  color: #fff;
}

.nav_main {
  padding: 10px 0px;
}

.menu_item_image {
  height: 50px;
  max-width: 150px;
}

.menu_item_image_sm nav-icon {
  position: relative;
  height: 20px;
  top: -2px;
}

.nav_item {
  max-width: 241px;
  float: left;
  padding: 3px 20px;
  text-align: center;
}

.nav-padding {
  padding-left: 50px;
  padding-right: 50px;
}

.nav-icon {
  height: 42px;
  width: 42px;
  margin-right: 5px;
  padding: 7px;
  border-radius: 50%;
  font-size: 28px;
}

.nav-icon-small {
  height: 32px;
  width: 32px;
  margin-right: 5px;
  padding: 7px;
  border-radius: 50%;
  font-size: 18px;
}

@media (max-width: 768px) {
  .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-top: none;
  }
  .nav_item {
    display: block;
    width: 100%;
    text-align: left;
  }
}
.dashboard_text {
  color: #999;
  font-weight: normal;
}
.dashboard_text > .dashboard_text-highlight {
  font-weight: bold;
}

.dashboard_graph {
  margin-bottom: 20px;
}

.dashboard_notifications {
  margin-bottom: 20px;
}
.dashboard_notifications-row {
  border: 1px solid #f5f5f5;
  padding: 10px;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  table-layout: fixed;
}
.dashboard_notifications-row tr {
  height: 60px;
}
.dashboard_notifications-row tr td {
  border: 1px solid #aaa;
}
.dashboard_notifications-leftborder-purple {
  border-left: 5px solid #ab46bc;
}
.dashboard_notifications-leftborder-brown {
  border-left: 5px solid #8c6e63;
}
.dashboard_notifications-leftborder-orange {
  border-left: 5px solid #fea000;
}
.dashboard_notifications-leftborder-blue {
  border-left: 5px solid #55b9db;
}
.dashboard_notifications-leftborder-green {
  border-left: 5px solid #92c946;
}
.dashboard_notifications .dashboard_number {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  color: #555;
  font-size: 18px;
  font-weight: bold;
}
.dashboard_notifications .dashboard_number-accent {
  padding: 4px;
  border-radius: 50%;
  color: white;
  width: 32px;
  height: 32px;
  display: inline-block;
}
.dashboard_notifications .dashboard_number-accent--purple {
  background-color: #ab46bc;
}
.dashboard_notifications .dashboard_number-accent--brown {
  background-color: #8c6e63;
}
.dashboard_notifications .dashboard_number-accent--orange {
  background-color: #fea000;
}
.dashboard_notifications .dashboard_number-accent--blue {
  background-color: #55b9db;
}
.dashboard_notifications .dashboard_number-accent--green {
  background-color: #92c946;
}

.dashboard_col {
  display: inline-block;
}
.dashboard_col-5 {
  width: 20%;
}

.donut_chart {
  text-align: center;
}
.donut_chart.primary .legend .legend_open {
  color: #fea000;
}
.donut_chart.primary .legend .legend_open > .circle {
  background-color: #fea000;
}
.donut_chart.primary .ct-series-a .ct-slice-donut {
  stroke: #fea000;
}
.donut_chart.primary .ct-label {
  fill: #fea000;
}
.donut_chart.secondary .legend .legend_open {
  color: #92c946;
}
.donut_chart.secondary .legend .legend_open > .circle {
  background-color: #92c946;
}
.donut_chart.secondary .ct-series-a .ct-slice-donut {
  stroke: #92c946;
}
.donut_chart.secondary .ct-label {
  fill: #92c946;
}
.donut_chart h5 {
  text-align: left;
}
.donut_chart .legend {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 12px;
}
.donut_chart .legend .circle {
  line-height: 14px;
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.donut_chart .legend .dashboard_text {
  display: inline-block;
  vertical-align: middle;
}
.donut_chart .legend .dashboard_text > .circle {
  background-color: #ddd;
}
.donut_chart .chart {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 20px;
  vertical-align: middle;
  display: inline-block;
}
.donut_chart .chart .ct-series-b .ct-slice-donut {
  stroke: #ddd;
}
.donut_chart .ct-label {
  text-anchor: middle;
  font-size: 64px;
  font-weight: bold;
}

.dashboard_users {
  padding-bottom: 20px;
}
.dashboard_users_button {
  margin-top: 20px;
  text-align: center;
}
.dashboard_users-label, .dashboard_users-child_label, .dashboard_users-label-gradient, .dashboard_users-parent_label {
  position: relative;
  color: #283593;
  display: inline-block;
  font-size: 25px;
  line-height: 15px;
  font-weight: bold;
}
.dashboard_users-label-gradient, .dashboard_users-parent_label {
  font-size: 42px;
  color: #5C6BC0;
}
.dashboard_users-parent_label {
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -8px;
}
.dashboard_users-child_label {
  position: absolute;
  right: -35px;
  top: 50%;
  margin-top: -8px;
}
.dashboard_users-bar, .dashboard_users-bar-relative, .dashboard_users-bar-gradient {
  height: 15px;
  border-radius: 50px;
  display: inline-block;
  background-color: #283593;
}
.dashboard_users-bar-gradient {
  background: #fea000; /* For browsers that do not support gradients */ /* For Safari 5.1 to 6.0 */ /* For Opera 11.1 to 12.0 */ /* For Firefox 3.6 to 15 */
  background: -webkit-gradient(linear, left top, right top, from(#fea000), to(#5C6BC0));
  background: linear-gradient(to right, #fea000, #5C6BC0); /* Standard syntax */
}
.dashboard_users-bar-relative {
  position: relative;
}

#pagination .pagination_border {
  border: 1px solid #aaa;
  border-collapse: collapse;
  border-radius: 0px;
}
#pagination .pagination_border:first-child {
  border-radius: 3px 0 0 3px;
}
#pagination .pagination_border:last-child {
  border-radius: 0 3px 3px 0;
}

.companylist {
  border: 1px solid #aaa;
  margin-top: 20px;
  margin-bottom: 20px;
}
.companylist_title {
  padding: 15px 20px;
  margin: 0px;
}
.companylist_title > span {
  color: #555;
  line-height: 47px;
}
.companylist_info > div div {
  padding: 10px;
}
.companylist_info > div div:first-child {
  color: #999;
  background-color: #eee;
}
.companylist_info > div div:nth-child(2) {
  color: #555;
  background-color: #f7f7f7;
}

.documents {
  background-color: #aaa;
}
.documents .single_document {
  background-color: white;
  border-radius: 5px;
}
.documents .single_document .control {
  margin: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: hidden;
}
.documents .single_document .control .control-indicator {
  top: 7px;
}

.download_link {
  position: relative;
  z-index: 999;
}

.questions .input_content {
  padding: 20px;
  color: #555;
  font-size: 16px;
}

.confirm_section .button {
  margin-left: 20px;
  margin-right: 20px;
}

@media (min-width: 768px) {
  .documents {
    margin: 20px;
  }
  .documents .single_document {
    margin: 20px;
  }
}
.profile_picture_container {
  text-align: center;
  padding: 20px;
  height: 285px;
}

.dashboard_notifications {
  text-align: center;
  margin-bottom: 0;
}

.drop_picture_drop {
  height: 200px;
}

.drop_container {
  font-family: "Raleway", sans-serif;
  background: #f7f7f7;
  border: 2px solid #aaa;
  border-radius: 3px;
  position: relative;
  padding: 20px 20px 30px;
}
.drop_container input {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.drop_container .form-control[disabled] {
  cursor: pointer;
  background: #fff;
  color: #999;
}
.drop_container .document_name {
  border: none;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
}
.drop_container .drop_remove {
  border-radius: 0;
  background: #fff;
}
.drop_container .input-group {
  display: block;
}
.drop_container .input-group-btn {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  width: initial;
}
.drop_container .input-group-btn .btn {
  background: #fff;
}

.drop_image_container {
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 3px;
}

.drop_image {
  padding: 10px;
  height: 100px;
  width: 100px;
}

.drop_title {
  border-bottom: 1px solid #aaa;
}

.drop_desc {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -70px;
  color: #999;
  font-size: 20px;
  font-weight: 700;
}

.fileUpload_image {
  border-radius: 50%;
  height: 100px;
  width: 100px;
}

.fileUpload_image-square {
  border-radius: 3px;
  height: 100px;
  width: 100px;
}

.video-square {
  height: 95px;
}

.drop_document_container {
  position: relative;
  background: #fff;
  margin-bottom: 10px;
}
.drop_document_container .input-group {
  width: 100%;
}

.settings_input {
  line-height: 42px;
}
.settings_button_container {
  text-align: right;
}

.qr_code_section {
  padding: 15px;
}

.qr_code_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.qr_code_container img {
  width: 400px;
  height: 400px;
}

.graph_container {
  border-bottom: 1px solid #aaa;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.report_button {
  text-align: left;
  font-weight: 400;
}
.report_filter_container {
  padding: 20px;
  background: #f7f7f7;
  border-bottom: 1px solid #aaa;
}
.report_filter_padding {
  padding-left: 20px;
  padding-right: 20px;
}
.report_label_container {
  display: inline-block;
  padding: 10px;
}
.report_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #aaa;
  border-left: 1px solid #aaa;
  padding: 10px;
  color: #999;
}
.report_main_value {
  color: #555;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
}
.report_value {
  line-height: 36px;
}
.report_value_dark {
  line-height: 36px;
  color: #555;
}
.report_value_overdue {
  line-height: 36px;
  color: #F44336;
}
.report_number {
  position: absolute;
  font-weight: 700;
  font-size: 26px;
  left: 8px;
  top: 50%;
  margin-top: -18px;
  width: 33px;
  text-align: center;
}
.report_container {
  position: relative;
  padding-left: 50px;
  padding-right: 0;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.report_container .report_item:last-child {
  border-bottom: none;
}
.report_search {
  margin-top: 5px;
  padding-left: 30px;
}
.report_search input {
  height: 40px;
}
.report_search_icon {
  position: absolute;
  top: 50%;
  font-size: 18px;
  color: #ddd;
  margin-top: -9px;
}

.induction_container {
  padding-left: 20px;
  padding-right: 20px;
}
.induction_header {
  border-bottom: 1px solid #aaa;
}
.induction_icon {
  display: inline-block;
  padding: 5px 20px;
  vertical-align: middle;
}
.induction_index {
  border-right: 1px solid #aaa;
}
.induction_arrow {
  display: inline-block;
  padding: 10px 20px 0px 17px;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
}
.induction_up_arrow {
  margin-left: -6px;
  display: inline-block;
  padding: 10px 20px 0px 17px;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
}

.option_button {
  padding-top: 25px;
}

.question_container {
  padding: 0px 15px;
  border: none;
  background: #fff;
}

.question_input_container {
  margin: 15px 0px;
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

.add_question_button {
  background-color: #eee;
  padding: 30px;
}

.input_background {
  background: #f7f7f7;
  padding: 30px 30px 30px 30px;
  font-size: 26px;
  font-weight: 700;
}

.input_foreground {
  margin-top: 30px;
  background: #fff;
}
.input_foreground:first-child {
  margin-top: 0px;
}

.option_button {
  padding-top: 25px;
}

.checklist_button {
  width: 100%;
}

.input_block-sm {
  margin-bottom: 5px;
}

.checklist-yes {
  background: #92c946;
  color: #fff;
}

.checklist-no {
  background: #F44336;
  color: #fff;
}

.checklist-na {
  background: #fea000;
  color: #fff;
}

.question_answer {
  font-weight: 700;
  color: #555;
}

.checklist_question_text {
  padding-bottom: 10px;
  font-size: 18px;
}

.checklist_question_container {
  font-family: "lato", sans-serif;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px dashed #aaa;
}
.checklist_question_container:last-child {
  border-bottom: none;
}

.checklist_icon {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
  padding-right: 5px;
}

.checklist_text {
  display: inline-block;
  vertical-align: middle;
}

.checklist_actions {
  text-align: center;
  width: 50%;
  float: left;
  padding-left: 5px;
}
.checklist_actions:first-child {
  padding-right: 5px;
  padding-left: 0px;
}

.checklist_icon_container {
  border: 1px solid #aaa;
  padding: 5px 0px;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #888;
  border-radius: 3px;
}

.active_icon {
  background: #888;
  color: white;
}

.checklist_note {
  color: #888;
  margin-top: 10px;
}

.checklist_answer_parent {
  margin-bottom: 0px;
}

.checklist_note-image {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "lato", sans-serif;
}

.checklist_note-image-dark {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "lato", sans-serif;
}

.header-font {
  font-family: "lato", sans-serif;
}

.container-padding {
  padding: 20px 20px;
}

.drop_container-important {
  background: #333333;
  border: 1px solid #aaa;
  border-radius: 3px;
  position: relative;
  padding: 20px;
  padding-bottom: 30px;
}

.drop_document_container-important {
  position: relative;
  background: #555;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-radius: 3px;
}

.box-important {
  width: 24px;
  height: 24px;
  top: 8px;
  position: absolute;
  background: #92c946;
  border-radius: 2px;
  text-align: center;
  color: white;
  left: 5px;
}

.text-important .custom-input {
  padding-left: 35px;
  background-color: #555 !important;
  color: #eee;
  border: none;
}

.button-margin-sm {
  margin-bottom: 5px;
}

.tile-image_container {
  min-height: 100px;
}

.checklist_header {
  border-bottom: 1px solid #aaa;
  padding-bottom: 20px;
}

.checklist_header-padding {
  padding: 15px;
}

.checklist_accordian {
  border-top: none !important;
}

.checklist_header-font {
  font-family: "Raleway", sans-serif;
}

.checklist_button-xs {
  padding: 2px 14px 4px 15px;
  font-size: 16px;
  font-weight: 300;
  font-family: "lato", sans-serif;
  color: #fff;
}

.checklist_container {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #aaa;
}

.checklist_answer_container {
  position: relative;
}

.row_display-content {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 34px;
}

.icon-expired {
  background-color: #92c946;
}

.icon-progress {
  background-color: #fea000;
}

.icon-active {
  background-color: #92c946;
}

.icon-inactive {
  background-color: #8c6e63;
}

.icon-waiting {
  background-color: #ab46bc;
}

@media (min-width: 1198px) {
  .row_display-button {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -15px;
  }
  .row_display-buttonMain {
    top: 35px;
  }
}
.contractorAlarm_container {
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  padding: 15px;
  bottom: 20px;
  left: 20px;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-animation: contractorAlarm_fadein 0.3s;
          animation: contractorAlarm_fadein 0.3s;
}
.contractorAlarm_container label {
  cursor: pointer;
  font-size: 15px;
}

.contractorAlarm_help_icon {
  background: url(/content/faq.png) no-repeat;
  background-size: 23px 23px;
  width: 30px;
  margin-left: 25px;
  margin-top: 12px;
}

.contractorAlarm_container:hover {
  background: #fff1c6;
}

.contractorAlarm_bell {
  background: url(/Content/alarm.svg) no-repeat;
  width: 40px;
  height: 40px;
  margin: 2px 15px 0 5px;
}

.contractorAlarm_modal {
  -webkit-animation: contractorAlarm_blinking 0.3s infinite;
          animation: contractorAlarm_blinking 0.3s infinite;
}

@-webkit-keyframes contractorAlarm_fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes contractorAlarm_fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes contractorAlarm_blinking {
  50% {
    background-color: rgba(0, 0, 0, 0.9);
  }
}
@keyframes contractorAlarm_blinking {
  50% {
    background-color: rgba(0, 0, 0, 0.9);
  }
}