html, body {
  position: relative;
  width: 100%;
  height: 100%;
}

body {
  color: #344357;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

a {
  color: rgb(0, 100, 200);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(0, 80, 160);
}

label {
  display: block;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  padding: 0.4em;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
  outline: none;
}

input:disabled {
  color: #ccc;
}

input[type="range"] {
  height: 0;
}

button {
  outline: none;
}

.mt-0 {
  margin-top: 0!important;
}

.mt-1 {
  margin-top: 1rem!important;
}

.mb-0 {
  margin-bottom: 0!important;
}

.mb-1 {
  margin-bottom: 1rem!important;
}

.mt-1-5 {
  margin-top: 1.5rem!important;
}

.mb-1-5 {
  margin-bottom: 1.5rem!important;
}

th.hidden {
  display: none;
}

a {
  transition: color 0.4s, background-color 0.4s, border 0.4s, box-shadow 0.4s;
}

a {
  color: #05a4ed;
  text-decoration: none;
  background-color: transparent;
}

/* begin bootstrap styles */

.form-control:focus {
  border-color: #05a4ed;
  box-shadow: 0 0 0 3px rgba(5, 164, 237, 0.1);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #344357;
  margin-bottom: 0.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.125rem + 2px);
  padding: 0.4375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: #3c4d62;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dbdfea;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-lg {
  height: calc(2.625rem + 2px);
  padding: 0.6875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  border-radius: 5px;
}

.form-control::placeholder {
  color: #8296b7;
}

.form-control-select .form-control {
  padding-left: calc(1rem - 6px);
}

.form-control.error {
  border-color: #e85347;
}

.form-control.error:focus {
  box-shadow: 0 0 0 3px rgba(232, 83, 71, 0.1);
}

.card-group .card:not(:first-child) {
  margin-top: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: .5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: Roboto;
  line-height: 1;
  border: none;
  background: transparent;
  transition: all .3s ease;
  white-space: nowrap;
}

.link-light {
  color: #8094ae!important;
}

.alert {
  position: relative;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert:last-child {
  margin-bottom: 0;
}

.alert-danger {
  color: #c3463c;
  background-color: #fceae9;
  border-color: #f7c1bd;
}

.alert-primary {
  background-color: #e6f1ff;
  border-color: #9dc6ff;
  color: #0169f7;
}

.alert-success {
  color: #19bc90;
  background-color: #e4fbf5;
  border-color: #aef4e1;
}

.alert-light {
  border-color: #e5e9f2;
  background-color: #fcfcfd;
  color: #526484;
}

.form-control~.invalid {
  color: #e85347;
  font-size: 11px;
  font-style: italic;
}

.table {
  width: 100%;
  color: #526484;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #dbdfea;
  border-radius: 4px;
}

table {
  border-collapse: collapse;
  border-spacing: 2px;
}

.table tr:first-child th:first-child {
  border-top-left-radius: 4px;
}

.table tr:first-child th, .table tr:first-child td {
  border-top: none;
}

.table thead tr:last-child th {
  border-bottom: 1px solid #dbdfea;
}

.table td:first-child, .table th:first-child {
  padding-left: .5rem;
}

.table .thead-light th {
  background-color: #f5f6fa;
  border-color: #dbdfea;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #8094ae;
  text-transform: uppercase;
  font-weight: 700;
  font-family: Roboto, sans-serif;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dbdfea;
}

.table th {
  line-height: 1.1;
}

.table th, .table td {
  padding: .5rem;
  vertical-align: top;
  border-top: 1px solid #dbdfea;
}

th {
  text-align: inherit;
}

/* end bootstrap styles */

/* begin datatable styles */

table.table.dataTable td:first-child, table.table.dataTable th:first-child {
  padding-left: .5rem!important;
}

/* end datatable styles */