
html, body {
    height:100%;
    margin:0;
    background-color: white !important;
    background-image: none !important;
    min-width: 340px;
}

.loading{
    background: none repeat scroll 0 0 whitesmoke;
    position: fixed;
    display: block;
    opacity: 0.5;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}
.no-loading{
    pointer-events: auto;
}
.load-container {
    width: 100%;
    height: 100%;
    min-height: auto;
    position: absolute;
    overflow: hidden;
    z-index: 2;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  margin: 25% auto; 
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0,61,166, 0.2);
  border-right: 1.1em solid rgba(0,61,166, 0.2);
  border-bottom: 1.1em solid rgba(0,61,166, 0.2);
  border-left: 1.1em solid #292946;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  z-index: 2000;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.4);
    transition: 0.3s;
    margin: 10px auto;
    background-color: #FFFFFF;
    padding: 10px;
    padding-top: 0px !important;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.8);
}

.card-body {
    padding:8px;
    padding-top: 20px;
}
#KitPlace {
    width: auto;
    height: auto;
    border: none;
    padding: 5px;
}
.input_error {
    border-bottom-color: red;
    color: red;
}
.error_message{
   color: red;
   font-weight: bold;
   font-size: 10px;
}

#alert-div {
    min-height: 53px;
}

#WidgetAppHTML {
    overflow: auto !important;
}