
body, html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  overflow-x: hidden;

  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: initial;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


*:-moz-full-screen,
*:-webkit-full-screen,
*:fullscreen *:-ms-fullscreen {
  overflow: auto;
}

input {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #495057;
  font-size: .9375rem;
  border: 1px solid #e8ecf1;
  width: 100%;
}
input::placeholder {
  color: #cbd1df;
}

#bodyContainer {
  width: 100%;
  min-height: 100%;
  position: relative;
  background: #ecf0f4;
}

#contentContainter {
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
  padding: 20px;
}





.mdtTableSorted {
  width: 100%;
  color: #212529;
  border-spacing: 2px;
  border-color: grey;
  border-collapse: collapse;
}

.mdtTableSorted tr {
  box-sizing: border-box;
}

.mdtTableSorted tr th, .mdtTableSorted tr td {
  border-top: 0;
  border-bottom-width: 1px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-weight: initial;
  vertical-align: bottom;
  border-bottom: 2px solid #e8e5e5;
  font-size: 0.875rem;
  line-height: 1;
  white-space: nowrap;
  padding: 0.9375rem;
  text-align: left;
}

.mdtTableSorted tr th {
  font-weight: 600;
}

.mdtTableSorted tbody tr:nth-of-type(odd) {
  background-color: #ecf0f4;
}
*/


#divContainerNotification {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  display: none;
  margin: 0 auto;
  vertical-align: middle;
  z-index: 100;
  text-align: center;
}
#divContainerNotification div {
  width: 50%;
  padding: 20px;
  background-color: white;
  margin: 20px auto 10px auto;
}

#divContainerError {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  display: none;
  margin: 0 auto;
  vertical-align: middle;
  z-index: 100;
  text-align: center;
}
#divContainerError div {
  width: 50%;
  padding: 20px;
  background-color: #a93737;
  color: white;
  margin: 20px auto 10px auto;
}





#divContainerHelp {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  display: none;
  margin: 0 auto;
  vertical-align: middle;
  z-index: 100;
  text-align: center;
}
#divContainerHelp div {
  width: 90%;
  padding: 20px;
  background-color: white;
  margin: 20px auto 10px auto;
}



.btnMdt {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btnMdt:hover {
  text-decoration: none;
}

.btnMdtSmall {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btnMdtSmall:hover {
  text-decoration: none;
}

.btnMdtDark {
  color: #fff;
  background-color: #2c629d;
  border-color: #005cbf;
}
.btnMdtDark:hover {
  color: #ccc;
  background-color: #134881;
}

.btnMdtLight {
  color: #fff;
  background-color: #7e9cbd;
  border-color: #62707e;
}
.btnMdtLight:hover {
  color: #eee;
  background-color: #6280a1;
}

.btnMdtDisabled {
  color: #fff;
  background-color: #a4a4a4;
  border-color: #868686;
}
