html,
body {
  background-color: #002c4d;
  color: white;
}

nav {
  background-color: white;
}

th {
  color: white;
  font-weight: bold;
}

td {
  color: white;
}

/* FORM TYPOGRAPHY*/

input[type=button],
input[type=submit],
input[type=reset] {
  background-color: #002c4d;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 10px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
  box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover {
  background-color: #39ace7;
}

input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text],
input[type=password],
input[type=email] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

select {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}


select.study-select {
    color: gray;

}
option[value=""][disabled] {
  display: none;
}
option {
  color: black;
}

input[type=text]:focus {
  background-color: #fff;
  border-bottom: 5px solid #5fbae9;
}

input[type=text]:placeholder {
  color: #cccccc;
}

input[type=radio] {
  padding: 1px;
}

input[type=text].iu-readonly-input {
  background-color: transparent;
  border: 0;
  border: none;
  color: white;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  padding: 0;
  margin: 5px;
  width: 85%;
}

label {
  margin-right: 20px;
  font-size: 12pt;
}
button {
  font-size: 10pt;
}

textarea {
  font-size: 10pt;
}
.comments-box{
  font-size: 10pt;
}

#header-img {
  width: 200px;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after {
  width: 100%;
}



/* OTHERS */

*:focus {
  outline: none;
}

.container {
  margin-top: 50px;
  max-width: 1500px;
  margin-bottom: 120px;
  flex: 1 1 auto;
}

.nav-container {
  width: 100%
}

.iu-h5 {
  font-size: 12pt;
}

.iu-h6 {
  color: #002c4d;
  font-size: 12pt;
}


@media only screen and (max-width: 475px) {
  .btn-group {
    display: flex;
    flex-direction: column;
  }

  .btn {
    border-radius: 0 0 0 0;
    border: 0 0 0 0;
  }

  #header-img {
    width: 100%;
  }

  #footer-img {
    max-width: 40%;

  }

  #mainNav .navbar-brand {
    text-align: center;
  }

  .btn-block+.btn-block {
    margin-top: .5rem;
    margin-left: 0;
  }

  .form-control-plaintext {
    font-size: 10px;
    background-color: transparent;
  }
}

@media only screen and (max-width: 330px) {
  .container {
    margin-top: 90px;
  }
  #header-img {
    width: 150px;
  }
  .footer {
    display: none;
  }
}

@media only screen and (min-width: 476px) {
  #footer-img {
    max-width: 175px;
  }

  .btn-block+.btn-block {
    margin-top: 0;
  }

}


footer {
  padding: 15px 0 15px;
  background-color: #fff;
  position: sticky;
  width: 100%;
  bottom: 0;
  margin-top: 10px;
}

footer .list-inline {
  margin: 0;
  padding: 0;
}

footer .copyright {
  font-size: 8px;
  margin-bottom: 0;
  text-align: center;
}

footer .row {
  margin-left: 0;
  margin-right: 0;
}

btn.btn-primary:active {
  background-color: grey !important;
  /* add here any color */
}

.iu-footer {
  justify-content: center;
  text-align: center;
}


.landing-div {
  text-align: center;

}


#mainNav {
  position: fixed;
  top: 0;
  border-bottom: 1px solid #e9ecef;
  background-color: #fff;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif
}

#mainNav .navbar-brand {
  font-weight: 800;
  color: #343a40;
  text-align: center;
}

#mainNav .navbar-toggler {
  font-size: 12px;
  font-weight: 800;
  padding: 13px;
  text-transform: uppercase;
  color: #343a40;
  float: right;
}

#mainNav .navbar-nav>li.nav-item>a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase
}

.btn-primary {
  background-color: #005693;
  border-color: #005693;
  font-size: 10pt;
}

.btn-primary:hover,
.btn-primary:focus {
  color: #ffffff !important;
  background-color: #ffc935 !important;
  border-color: #494F57 !important;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #eb4b6f;
  border-color: #343a40
}
.form-group {
  margin-bottom: .5rem;
}
/* OTHERS */

*:focus {
  outline: none;
}

#icon {
  width: 60%;
  border-radius: 50%;
  margin-top: 15px;
  margin-bottom: 15px;
  /* padding: 15px 0px 15px 0px;*/
  box-shadow: 10px 10px 5px darkgrey;
}


#formTitle {
  font-size: 18px;
}

.iu-admin-card {
  border: solid 1px #CCC;
  padding: 5pt;
  margin: 1pt 2pt 2pt 2pt;
  white-space: nowrap;
  height: 200pt;
  width: 200pt;
  overflow-y: auto;
  color: #777;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  background: #ffffff;
  /*background: -ms-linear-gradient(top, #ffffff 1%,#ccd6e1 100%);*/
  background: linear-gradient(top, #ffffff 1%, #ccd6e1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea', GradientType=0);
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3), 1px 0px 0px 0px rgba(255, 255, 255, 0.9) inset, 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 20px 20px;
  text-align: center;
}

.iu-admin-card-logo {
  width: 80%;
  height: 50%;

}

.admin-button-list {
  margin-bottom: 10px;
}

.iu-admin-card-links {
  text-align: left;
  font-size: 10pt;
}

.iu-list-btn {
  background-color: #002c4d;
}

.iu-form-icon {
  color: #eb4b6f;
  font-size: 48px;
}

.iu-table {
  border-bottom: 1px solid #ddd;
  padding: 15px;
  text-align: left;

}

td>img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}


/* BASIC */

html {
  background-color: #002c4d;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
  height: 100vh;
}

a {
  color: #92badd;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin: 40px 8px 10px 8px;
  color: #cccccc;
}



/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 80%;
  padding: 20px;
  margin-top: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 800px;
  position: absolute;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
}

#formHeader {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
}

#formFooter {
  background-color: #f6f6f6;
  padding: 25px;
  text-align: center;
}

.iu-form-title {
  color: #0d0d0d;
}

.form-row {
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
}


/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



#icon {
  width: 25%;
  border-radius: 50%;
  margin-top: 15px;
  margin-bottom: 15px;
  /* padding: 15px 0px 15px 0px;*/
  box-shadow: 10px 10px 5px darkgrey;
}



#formTitle {
  font-size: 18px;
}

.iu-admin-card {
  border: solid 1px #CCC;
  padding: 5pt;
  margin: 1pt 2pt 2pt 2pt;
  white-space: nowrap;
  height: 200pt;
  width: 200pt;
  overflow-y: auto;
  color: #777;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  background: #ffffff;
  /*background: -ms-linear-gradient(top, #ffffff 1%,#ccd6e1 100%);*/
  background: linear-gradient(top, #ffffff 1%, #ccd6e1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea', GradientType=0);
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3), 1px 0px 0px 0px rgba(255, 255, 255, 0.9) inset, 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 20px 20px;
  text-align: center;
}

.iu-admin-card-logo {
  width: 80%;
  height: 50%;

}

.admin-button-list {
  margin-bottom: 10px;
}

.iu-admin-card-links {
  text-align: left;
  font-size: 10pt;
}

.iu-list-btn {
  background-color: #002c4d;
}

.iu-form-icon {
  color: #eb4b6f;
  font-size: 48px;
}

.iu-table {
  border-bottom: 1px solid #ddd;
  padding: 15px;
  text-align: left;

}

.list-group-horizontal .list-group-item{
  background-color: transparent;
  border: none;

}

td>img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}
.version-info-1 {
  float: left;
  padding-left: 1em;
  margin-left: 1em;
  position: absolute;
  bottom: 0;  

}
.version-info-2 {
  float: right;
  padding-right: 1em;
  margin-right: 1em;
  position: absolute;
  bottom: 0;
  right: 1em;
}
.iu-copyright {
  text-align: center;
}

/* Warning area */
#chart4 path:nth-child(4) {
  fill: lightgreen;
}

/* Danger area */
#chart4 path:nth-child(3) {
  fill: darkgreen;
}

#dtTaskData tr {
  background-color: none;
  color: #002c4d;
}

table.dataTable {
  background-color: #002c4d;
}

.login-input-location {
  width: 30%;
}

.login-input-email {
  width: 30%;
}
.iu-chkbox-label {
  color: black;
  font-size: 10pt;
}
.iu-notfound-icon {
  font-size: 48pt;
  color: yellow;
}

.iu-inline-icon {
  font-size: 24px;
  color: #002c4d;
}