html,
body {
  height: 100%;
  overflow-y: scroll;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 10px 0 10px 0;
  padding: 0;
}

* {
  margin: 0px;
  padding: 0px;
}

.container-fluid {
  min-width: 95%;
  width: 95% !important;
}

.fill {
  min-height: 100%;
  height: 100% !important;
}

.map {
  background-color: green;
}

.k-grid tbody tr {
  height: 30px;
}

.k-grid td {
  white-space: nowrap;
}

.k-grid-normal td {
  white-space: normal;
}

.k-grid {
  font-size: 12px;
}

.k-grid td {
  line-height: 1.5em;
}

.k-grid table tbody tr td {
  border-bottom: 1px solid #d9d9d9;
}

.status-blue {
  color: #00529b;
  background-color: #bde5f8;
}

.status-green {
  color: #4f8a10;
  background-color: #dff2bf;
}

.status-orange {
  color: #9f6000;
  background-color: #feefb3;
}

.status-red {
  color: #d8000c;
  background-color: #ffbaba;
}

.row-space {
  margin-top: 20px;
}

.row-space-15 {
  margin-top: 15px;
}

.isis-well {
  border: 1px solid #f5f5f5;
}

.isis-textarea {
  resize: none;
}

.isis-div-margin-bottom {
  margin-bottom: 10px;
}

#pdfViewer {
  border: 1px solid #f5f5f5;
  height: 75vh;
  width: 100%;
}

.error-template {
  margin: 0 auto;
  text-align: center;
  max-width: 650px;
  padding: 60px 30px;
}

.error-template .error-code {
  font-size: 96px;
  line-height: 100px;
}

.error-template .error-desc {
  font-size: 12px;
  color: #647788;
}

.error-template .input-group {
  margin: 30px 0;
}

#gridRequests .k-button {
  min-width: 25px;
  width: 25px;
}

#gridHooks .k-grid-content {
  height: 450px;
}

#gridFlows .k-grid-content {
  height: 250px;
}

.k-tabEQX {
  color: #ffffff;
  background-color: #2ecc40 !important;
}

.type-green {
  color: #ffffff;
  background-color: #51d88a;
}

.type-red {
  color: #ffffff;
  background-color: #ef5753;
}

.type-fa {
  color: #ffffff;
  background-color: #ffa07a;
}

.type-fv {
  color: #ffffff;
  background-color: #90ee90;
}

.type-yellow {
  color: black;
  background-color: #ffeaa7;
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

.navbar-default .navbar-nav > .active {
  color: #000;
  background: #ffee58;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #000;
  background: #ffee58;
}

.label-click {
  text-decoration: underline;
  color: #00529b;
}

.margin-top-11 {
  margin-top: 11px;
}

.padding-0 {
  padding-right: 0;
  padding-left: 0;
}

.padding-left-xl {
  padding-left: 3em;
}

.isis-stamp {
  background-color: #333;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 4px;
}

.bg-yellow {
  background-color: #ffeaa7;
}

.blue-medium {
  border-color: #66afe9;
  border-width: medium;
}

.border-medium {
  border-width: medium;
}

.k-widget .row * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.force-to-bottom {
  position: absolute;
  bottom: 5%;
}

.checkbox {
  padding-left: 20px;
}

.checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}

.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}

.checkbox input[type="checkbox"] {
  opacity: 0;
}

.checkbox input[type="checkbox"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked + label::after {
  font-family: "FontAwesome";
  content: "\f00c";
}

.checkbox input[type="checkbox"]:disabled + label {
  opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #2196f3;
  border-color: #2196f3;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff;
}

.filterText {
  width: 100%;
  box-sizing: border-box;
  padding: 6px;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
}

.list-item {
  margin: 0;
  padding: 5px 5px 5px 5px;
}

.errorMsg {
  font-size: 12px;
  color: #d8000c;
}