/* Report card */

/* Static Content */

/* Loader */

body {
  background: #F8F8F8;
}

.search-banner {
  z-index: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  padding: 50px 30px;
  padding-bottom: 80px;
  margin-bottom: 30px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.search-banner::before {
  z-index: 0;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E53935;
  opacity: .4;
}

.search-banner::after {
  z-index: 0;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .4;
}

.search-banner .content {
  z-index: 1;
  position: relative;
}

.search-banner h1 {
  margin: 0;
  margin-bottom: 15px;
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.search-banner p {
  margin: 0;
  color: #FFF;
  opacity: .8;
  max-width: 50ch;
}

.search-head .search-control {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 5px;
  border-radius: 8px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
}

.search-head .search-control > i {
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -9px;
  color: #333;
  font-size: 18px;
}

.search-head .search-control .form-control {
  padding: 20px;
  padding-left: 55px;
  border: 1px solid #EEE;
  border-radius: 8px 0 0 8px;
  height: auto;
}

.search-head .search-control .btn {
  padding: 20px 40px;
  border: none;
  border-radius: 0 8px 8px 0;
}

.search-head .search-label {
  color: #777;
  font-size: 14px;
}

.static-content {
  text-align: center;
  margin-top: 30px;
  padding: 80px 15px;
  background: #FFF;
  border: 1px solid #EEE;
  border-radius: 8px;
}

.static-content i {
  display: block;
  margin-bottom: 30px;
  color: #777;
  font-size: 120px;
  opacity: .8;
}

.static-content span {
  color: #777;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}

.static-content strong {
  color: #E53935;
}

.loader {
  padding: 80px 0;
  text-align: center;
}

.loader .lds-roller {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  margin-bottom: 50px;
}

.loader span {
  display: block;
  color: #777;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}

