/* Global  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

body,
html {
  height: 100%;
}

/* Utility */
ul {
  margin-bottom: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}
.search_box {
    padding: 20px 0;
}
.banner {
    width: 100%;
    max-height: 300px;
}
.search_box h2{
  color: #fff;
}
.subtitle {
    padding: 30px 0 0 0;
}
.search_box a {
    color: red;
}
.search_textbox {
    width: 40%;
}
.search_textbox .form-control {
    width: -webkit-fill-available;
}
.btn-submit {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  border-radius: 0.5em;
  background: red;
  border: 1px solid red;
}
.search_results {
  padding: 30px 10px;
  max-width: 900px;
  margin: 0 auto;
}
.text-bold {
  font-weight: bold;
}
.fa-spin {
  margin-right: 5px;
  color: #fff;
}
footer {
    background: #eee;
    color: #000;
    padding: 10px 0;
    right: 0;
    bottom: 0;
    left: 0;
}
footer p {
    color: #000;
    margin-bottom: 0;
}
footer a {
    color: #000;
}
.error {
    color: red;
    font-size: 8px;
}
.about {
    padding: 60px 0;
}

/* Form Control */
.form-control:focus {
  color: #495057;
  border-color: #29487e;
  box-shadow: 0 0 0 0rem rgba(0, 123, 255, .25);
}

.custom-select:focus {
  border-color: #29487e;
  box-shadow: 0 0 0 0rem rgba(0, 123, 255, .25);
}

/* Custom Data Table CSS*/
.table-responsive {
  display: inline-table;
}

@media (min-width: 768px) and (max-width: 991px) {
  .table-responsive {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .table-responsive {
    display: block;
  }
}


/*================== Main Page ================*/
.main-page {
  height: fit-content;
  background: -webkit-linear-gradient(177deg, #f2f7ff 0%, #90a8d5 50%, #617eaf 100%);
  background: linear-gradient(177deg, #f2f7ff 0%, #90a8d5 50%, #617eaf 100%);
  /* opacity: 0.9; */
}

.main-login-container {
  min-height: calc(100vh - 76px);
}

@media screen and (max-width: 767px) {
  .main-page {
    height: auto;
  }

  .main-login-container {
    min-height: 100vh;
  }
}