/** Google Fonts **/

@import url('https://fonts.googleapis.com/css?family=Muli:600,700');

/** General Styles **/

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Muli', sans-serif;
  margin: 0;
  padding: 0;
}

body{
  background-color: rgb(168, 190, 165);
  font-size: 15px;
}
#container{
  margin: 0.5em;
}

/** Navigation **/

div#bs-example-navbar-collapse-1.collapse.navbar-collapse {
    font-size: 15px !important;
  }
  ul.dropdown-menu li a {
    font-size: 15px !important;
  }
  
  .navbar-default {
    background-color: #0d0a38;
  }
  
  .nav.navbar-nav.navbar-right li a {
    color: #eadbdb;
  }
  
  .nav.navbar-nav.navbar-right li a:hover {
    color: #b4969a;
  }
  
  .navbar-default .navbar-nav>.active>a {
    background-color: #0b134d;
  }
  
  .navbar {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
  }
  
  .navbar-brand {
    padding: 0;
  }
  
  .navbar-nav {
    margin-bottom: 0px;
  }
  
  .navbar-brand>img {
    width: auto;
    height: 100%;
    padding: 0;
  }
  
  .dropdown-menu {
    padding: 0;
  }
  
  .dropdown-menu>li {
    text-align: left;
    font-size: 15px;
    border-bottom: 2px solid #fff;
    padding: 0;
  }
  
  .dropdown-menu>li>a {
    background-color: #0b134d;
    color: #fff;
  }
  
  .dropdown-menu>li>a>img {
    height: 1.2em;
    width: 2em;
    margin-left: 0px;
  }
  
  @media (min-width: 979px) {
    ul.nav li.dropdown:hover>ul.dropdown-menu {
      display: block;
    }
  }
/** Table **/
.table-nonfluid {
    white-space: nowrap; 
    overflow: hidden;
    margin: auto;
    width: 70%; 
}

.table-responsive{
  border: 0;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th  {
    padding: 4px;
    font-size: 15px;
    border: none;
    height: 39px;
    text-align: center;
}

input{
   width: 100%;
}
.no-spinners {
    -moz-appearance: textfield;
}

.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*Modal*/

.button{
    background-color: coral;
    padding: .2em .5em;
    color: #fff;
    border: 0;
    position: fixed;
    z-index: 1;
    right: 0;
}


.button:hover{
    background: #333;
}

.modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5)
}

.modal-content{
    background-color: #fff;
    margin: 4% auto;
    padding: 0px 15px 15px 15px;
    width: 55%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: 1s; 
}

.closeBtn{
    color: #ccc;
    float: right;
    font-size: 30px;
}

.closeBtn:hover,.closeBtn:focus{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


@keyframes modalopen{
    from{ opacity: 0}
    to{ opacity: 1};
}


img{
    margin-top: 0;
    padding-top: 0;
}

.red{
  border: solid 1px #a8a8a8;
  background-color: #ebebeb;
  display: inline-block;
  width: 57px;
  height: 23px;
  margin: 0;
  padding: 0;
}

input[type="number"]:disabled {
  background: rgb(168, 190, 165);
  border-width: 0;
}
input[type="number"]:enabled {
  background: #d1d1d1;
  border-width: 0;
}

h1 {
  text-align: center;
  font-weight: 700;
  margin-bottom: .5em;
}

.text-left{
  text-align: left !important;
}

input[type="text"]{
  border-width: 0;
  background-color : #ebebeb; 
  
  }

  #headerImage{
    margin: 1em auto;
    width: 70%;
  }

  #download{
    margin: 0 auto;  
  }

  #abbrv{
    font-size: 13px;
  }

  .hide{
    display: none !important;
  }
  .show{
    display: show !important;
  }