body .clearfix {
  clear: both;
}
body .form-group {
  margin-bottom: 15px;
  overflow: hidden;
}
body .fill-width {
  width: 100% !important;
}
body input[type=submit],
body input[type=button] {
  cursor: pointer;
}
body .list-group {
  margin-top: 10px;
  list-style-type: none;
}
body .list-group .list-group-item {
  border: none;
  margin-bottom: 0;
  padding: 10px 5px;
  border-bottom: 1px solid;
  overflow: hidden;
}
body .list-group .list-group-item.top-border {
  border: none;
  margin-top: 0;
  padding: 10px 5px;
  border-top: 1px solid;
  overflow: hidden;
}
body .list-group .list-group-item.top-border:first-child,
body .list-group .list-group-item.top-border.no-border {
  border: none;
}
body .list-group .list-group-item.top-border:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid;
}
body .panel {
  background-color: #f9f6f1;
}
body .panel .panel-title {
  font-size: 1.1em;
  line-height: 1.3em;
  font-weight: bold;
}
body .panel .panel-body {
  background-color: #f9f6f1;
}
body .panel .panel-toolbar {
  background-color: #dac8aa;
  font-size: 1.1em;
  line-height: 1.3em;
  padding: 2px 0;
}
body .panel .list-group {
  background-color: #f9f6f1;
  overflow: auto;
}
body .panel .list-group .list-group-item {
  background-color: #f9f6f1;
}
body .panel .list-group .list-group-item:hover {
  background-color: #e3e3e2;
}
body .panel .list-group .list-group-item:last-child {
  border-bottom: 1px solid #dddddd !important;
}
body .panel .list-group .active {
  background-color: #eadfcd !important;
  border-color: transparent;
}
body .panel-default {
  border-color: #7e7d7b;
  background-color: #f9f6f1;
}
body .panel-default .panel-heading {
  background-color: #979695;
  color: white;
}
body .panel-default .panel-toolbar {
  background-color: #dac8aa;
}
body .icon-green {
  color: #05701a;
}
body .icon-red {
  color: #d90505;
}
body .icon-dark-grey {
  color: #38484f;
}
body .modal-open {
  overflow: hidden;
}
body .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
body .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
body .modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
body .modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  body .modal.fade .modal-dialog {
    transition: none;
  }
}
body .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
body .modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
body .modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(99%);
}
body .modal-dialog-scrollable .modal-content {
  max-height: calc(99vh);
  min-width: 600px;
  overflow: hidden;
}
body .modal-dialog-scrollable .modal-header,
body .modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
body .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
body .modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(99%);
}
body .modal-dialog-centered::before {
  display: block;
  height: calc(99vh);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
body .modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
body .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
body .modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}
body .modal-content-scrollable {
  max-height: 100vw;
  overflow-y: scroll;
}
body .modal-scrollable-div-paragraph {
  max-height: 50vw;
  padding: 18px;
  background-color: Gainsboro;
  border-style: groove;
  overflow-y: scroll;
}
body .modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 600px;
  width: 100%;
  pointer-events: auto;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  outline: 0;
}
body .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: black;
}
body .modal-backdrop.fade {
  opacity: 0;
}
body .modal-backdrop.show {
  opacity: 0.5;
}
body .modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(-0.7rem);
  border-top-right-radius: calc(-0.7rem);
}
body .modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
body .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
body .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
body .modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(-0.7rem);
  border-bottom-left-radius: calc(-0.7rem);
}
body .modal-footer > * {
  margin: 0.25rem;
}
body .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  body .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  body .modal-dialog-scrollable {
    max-height: calc(96.5%);
  }
  body .modal-dialog-scrollable .modal-content {
    max-height: calc(96.5vh);
  }
  body .modal-dialog-centered {
    min-height: calc(96.5%);
  }
  body .modal-dialog-centered::before {
    height: calc(96.5vh);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  body .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  body .modal-lg,
  body .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  body .modal-xl {
    max-width: 1140px;
  }
}
body .modal-footer {
  margin-bottom: 0;
}
body .modal-body {
  margin-top: 30px;
}
body .modal-dialog.width-400 {
  width: 400px;
}
body .modal-open .modal {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow-y: scroll;
}
body label.required-label:after {
  content: '*';
  margin-right: -7px;
  font-weight: bold;
}
body .auto-width {
  width: auto;
}
body .col-3-and-half {
  width: 29.16667%;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
body .col-1-and-half {
  width: 12.5%;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
body #messagePopoverContainer a {
  color: white;
  font-weight: bold;
}
body .form-horizontal .form-group {
  margin-right: 0;
  margin-left: 0;
}
.error-bg {
  color: red;
  background-color: transparent;
  /*padding: 0 5px 5px 5px;*/

}
.field-validation-error {
  color: red;
  position: absolute;
}
.field-validation-error.on-left-from-label {
  left: 5px;
  font-weight: bold;
}
.field-validation-valid {
  display: none;
}
.sort {
  cursor: pointer;
}
.link-inside {
  display: inline-block;
  height: 26px;
  width: 32px;
}
.link-inside.font-awesome-icon {
  font-size: 24px;
  text-align: center;
  padding-top: 10px;
}
.link-inside.trash {
  background: url("../../../images/trash.png") no-repeat center;
  background-size: 26px;
}
.link-inside.pencil {
  background: url("../../../images/pencil.png") no-repeat center;
  background-size: 26px;
}
.link-inside.pencil-grey {
  background: url("../../../images/pencil-grey.png") no-repeat center;
  background-size: 26px;
}
.link-inside.arrow_down {
  background: url("../../../images/arrow_down.png") no-repeat center;
  background-size: 26px;
}
.link-inside.refresh {
  background: url("../../../images/refresh.png") no-repeat center;
  background-size: 26px;
}
.link-inside.bell {
  background: url("../../../images/bell.png") no-repeat center;
  background-size: 26px;
}
.link-inside.download {
  background: url("../../../images/download.png") no-repeat center;
  background-size: 26px;
}
.link-inside.out-arrow {
  background: url("../../../images/out-arrow.png") no-repeat center;
  background-size: 26px;
}
.link-inside.circle {
  background: url("../../../images/circle.png") no-repeat center;
  background-size: 26px;
}
.link-inside.dotted-circle {
  background: url("../../../images/dotted-circle.png") no-repeat center;
  background-size: 26px;
}
.link-inside.stop-button {
  background: url("../../../images/stop-button.png") no-repeat center;
  background-size: 26px;
}
.link-inside.start-button {
  background: url("../../../images/start-button.png") no-repeat center;
  background-size: 26px;
}
.link-inside.thumb-up {
  background: url("../../../images/thumb-up.png") no-repeat center;
  background-size: 26px;
}
.link-inside.thumb-down {
  background: url("../../../images/thumb-down.png") no-repeat center;
  background-size: 26px;
}
.link-inside.recycle {
  background: url("../../../images/recycle.png") no-repeat center;
  background-size: 26px;
}
.link-inside.edit-scores {
  background: url("../../../images/edit-scores.png") no-repeat center;
  background-size: 26px;
}
.link-inside.repair {
  background: url("../../../images/repair.png") no-repeat center;
  background-size: 26px;
}
.link-inside.checked-circle {
  background: url("../../../images/checked-circle.png") no-repeat center;
  background-size: 26px;
}
.link-inside.laptop {
  background: url("../../../images/laptop.png") no-repeat center;
  background-size: 26px;
}
.link-inside.flag {
  background: url("../../../images/flag.png") no-repeat center;
  background-size: 26px;
}
.link-inside.setupcog {
  background: url("../../../images/setupcog.png") no-repeat center;
  background-size: 26px;
}
.link-inside.cross-circle {
  background: url("../../../images/cross-circle.png") no-repeat center;
  background-size: 26px;
}
.link-inside.progress-strip {
  background: url("../../../images/progress.png") no-repeat center;
  background-size: 26px;
}
button.small {
  min-width: 0;
  line-height: 1em;
  padding: 0.5rem 1rem;
}
a.small {
  min-width: 0;
  line-height: 1em;
  padding: 0.5rem 1rem;
  margin-right: 0.625rem;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.icon-link {
  margin: -10px 0 -10px 10px;
}
.icon-link:first-child {
  margin-left: 0;
}
.accordion-title-actions {
  position: absolute;
  right: 0;
  top: 15px;
}
.datetimepicker {
  display: flex;
}
.datetimepicker input {
  border-radius: 3px 0 0 3px !important;
}
.input-group-addon {
  display: table-cell;
  padding: 5px 12px;
  margin-bottom: 1rem;
  border: 1.3px solid #2c9994;
  border-radius: 0 3px 3px 0;
  border-left: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #38484f;
  text-align: center;
  background-color: #bed3d2;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
}
.input-group-addon:disabled,
.input-group-addon.disabled {
  cursor: not-allowed;
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
button.ui-datepicker-trigger {
  display: none;
}
.ui-widget-header {
  background: #2c9994 !important;
  border: 1px solid #338987 !important;
}
.ui-state-hover {
  background: #bed3d2 !important;
  border: 1px solid #338987 !important;
}
.ui-state-highlight {
  color: #2c9994 !important;
  background: #bed3d2 !important;
  border: 1px solid #338987 !important;
}
.ui-state-active {
  background: #2c9994 !important;
  border: 1px solid #338987 !important;
  color: #f2f2f2 !important;
}
.right-border {
  border-right: 2px solid #e1e2e3;
  margin-right: -1px;
}
.left-border {
  border-left: 2px solid #e1e2e3;
  margin-left: -1px;
}
.no-margin-right {
  margin-right: 0 !important;
}
.icon-with-text i {
  padding-left: 2px !important;
}
.logo2 {
  height: 60px;
  background-repeat: no-repeat;
  background-position-x: right;
  background-image: url("../../../images/logo-tb-2.png");
}
.logo3 {
  text-align: right;
}
.logo3 img {
  max-height: 250px;
  max-width: 300px;
}
