/*********************************************************/
/*   Styles for modals  - interactive forms              */
/*********************************************************/
.OEmodal {
  z-index: 2;
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none;
}
.OElogin {
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #2F598C;
}
.OElogin:hover{
  cursor: pointer;
  color: black;
}
.OElogout {
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #2F598C;
  text-decoration: none!important; 
}
.OElogout:hover{
  cursor: pointer;
  color: black;
  text-decoration: underline;
}
.OElogout a:visited{
  color: #2F598C;
  text-decoration: none!important;
}

.OEregister-button {
  height: 20px;
  width: 80px;
  line-height: 1px;
  font-size: 12px;
  border-radius: 8px;
  background: #004EFF;
  padding: 1px;
  text-decoration: none;
  color: white;
  border: 0px;
}
.OEregister-button:hover{
  background: #2F598C;
  cursor: pointer;
}
.OEregister-form {
  z-index: 3;  /*  OEmenu is 1,  modal is 2 */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 460px;
  position: absolute;
  background: #2F598C;
  border: 2px solid #BFBFBF;
  display: block;
}
.OEregister-form-labels {
  width: 100px;
  text-align: right;
  font-size: 14px;
  color: white;
}
.OEregister-form-inputs {
  width: 120px;
  font-size: 14px;
}
.OEregister-form-errors {
  font-size: 14px;
  width: 200px;
  color: orange;
}
.OEprofile-form {
  z-index: 3;  /*  OEmenu is 1,  modal is 2 */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 460px;
  position: absolute;
  background: #2F598C;
  border: 2px solid #BFBFBF;
  display: block;
}
.OEprofile-form-labels {
  width: 100px;
  text-align: right;
  font-size: 14px;
  color: white;
}
.OEprofile-form-inputs {
  width: 120px;
  font-size: 14px;
}
.OEprofile-form-errors {
  font-size: 14px;
  width: 200px;
  color: orange;
}
.OElogin-form {
  z-index: 3;  /*  OEmenu is 1,  modal is 2 */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 140px;
  width: 420px;
  position: absolute;
  background: #2F598C;
  border: 2px solid #BFBFBF;
  display: block;
}
.OElogin-form-labels {
  width: 120px;
  font-size: 14px;
  text-align: right;
  color: white;
}
.OElogin-form-inputs {
  width: 120px;
  font-size: 14px;
}
.OElogin-form-errors {
  width: 180px;
  font-size: 14px;
  color: orange;
}
.OEmessage-form {
  z-index: 3;  /*  OEmenu is 1,  modal is 2 */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 200px;
  width: 280px;
  position: absolute;
  background: #2F598C;
  border: 2px solid #BFBFBF;
  display: block;
}
.OEmessage-content {
  height: 120px; /* needs to be a share within the OEmessage form above */
  text-align: center;
  vertical-align: middle;
  color: white;
  font-size: 14px;
}