.h-two-hundred {
    height: 200px;
}
.h-three-hundred {
    height: 300px;
}
.h-four-hundred {
    height: 400px;
}
.h-five-hundred {
    height: 500px;
}
.h-overflow {
    overflow: auto;
}
.secure-logo {
    position:fixed;
    bottom: 5px;
    left: 5px;
}
.secure-logo img {
    width: 50px;
    opacity: 0.5
}
.login-logo {
    background-color: rgba(255,255,255,0.3);
    text-align: left;
    width: 100%;
    position:fixed;
    top: 0px;
    left: 0px;
}
.login-logo img {
    width: 250px;
}
@media screen and (max-width: 780px) {
    .login-logo {
        background-color: rgba(255,255,255,0);
        position: initial;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
    .login-logo img {
        width: 140px;
    }
}
.name-to-title {
    width: 100%;
    position: fixed;
    font-size: 1.8em;
    padding: 2px;
    top: 0px;
    left: 0px;
    z-index: 10;
    background-color: #FFFFFF;
    display: none;
    border-bottom: #CCCCCC solid 2px;
}
.field-line {
    border-bottom: 1px solid #ccc;
}
.cur-pointer {
    cursor: pointer;
}
.th-input {
    width: 100%;
}
.text-big {
    font-size: 1.8em;
}
#pregnancy .table-bordered td,
#pregnancy .table-bordered th {
    border: 1px solid #3c3c3c;
}
#pregnancy .bg-dark {
    background-color: #3c3c3c;
}
#container table {
    margin-bottom: 0 !important;
}
.form-control {
    border: 1px solid #ccc;
}
.tooltipevent {
    width: 280px;
    height: 130px;
    position: absolute;
    z-index: 10001;
    border: 1px solid #000;
    padding: 5px;
    background-color: #fff;
}
section{
  position: relative;
  width: 100%;
  height: 100vh;
  background: #3586ff;
  overflow: hidden;
}
section .air{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(/img/wave.png);
  background-size: 1000px 100px
}
section .air.air1{
  animation: wave 30s linear infinite;
  z-index: 1000;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}
section .air.air2{
  animation: wave2 15s linear infinite;
  z-index: 999;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}
section .air.air3{
  animation: wave 30s linear infinite;
  z-index: 998;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15px;
}
section .air.air4{
  animation: wave2 5s linear infinite;
  z-index: 997;
  opacity: 0.7;
  animation-delay: -5s;
  bottom: 20px;
}
@keyframes wave{
  0%{
    background-position-x: 0px; 
  }
  100%{
    background-position-x: 1000px; 
  }
}
@keyframes wave2{
  0%{
    background-position-x: 0px; 
  }
  100%{
    background-position-x: -1000px; 
  }
}
