@charset "utf-8";
/* ALERT BOX */
@media (min-width: 576px) {
  #alertBox, #confirm {
    width: auto;
    height: auto;
    border: 2px solid #162A52;
    background-color: #fff;
    background-repeat: no-repeat;
    /* Center vertically and horizontally */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5000;
  }
}
@media (min-width: 0px) and (max-width: 576px) {
  #alertBox, #confirm {
    width: 275px;
    min-height: 375px;
    border: 2px solid #162A52;
    background-color: #fff;
    background-repeat: no-repeat;
    /* Center vertically and horizontally */
    position: fixed;
    top: 25%;
    left: 25%;
    transform: translate(-25%, -25%);
    z-index: 5000;
  }
  #closeBtn {
    float: left;
	margin: 10px;
  }
  #okBtn, #pieelogin {
	float: left;
	margin: 10px;
  }
}
#confirm {
  display: none;
}
#alertBox > h1, #confirm > h1 {
  margin: 0;
  font-size: 2em;
  font-weight: 600;
  background-color: #162A52;
  color: #FFF;
  border-bottom: 1px solid #162A52;
  padding: 10px 0 10px 10px;
}
#alertBox > p, #confirm > p {
  height: auto;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
}
#closeBtn {
  display: inline-block;
  float: right;
  position: relative;
  margin: 10px 30px;
  padding: 10px;
  border: 0 none;
  width: auto;
  text-transform: uppercase;
  text-align: center;
  color: #FFF;
  background-color: #162A52;
  border-radius: 0px;
  text-decoration: none;
  outline: 0 !important;
  cursor: pointer;
}
#okBtn, #pieelogin {
  display: inline-block;
  position: relative;
  margin: 10px 30px;
  padding: 10px;
  border: 0 none;
  width: auto;
  text-transform: uppercase;
  text-align: center;
  color: #FFF;
  background-color: #162A52;
  border-radius: 0px;
  text-decoration: none;
  outline: 0 !important;
	cursor: pointer;
}
#closeBtn:hover, #pieelogin:hover, #okBtn:hover {
  background-color: #446078;
}

/* DISCLAIMER BOX  Modifying Bootstrap 4 */
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(27, 52, 83, .8);
  border-radius: 0px;
  outline: 0;
}
.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  background-color: #162A52;
  border-radius: 0px;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  color: #FFFFFF;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  color: #FFFFFF;
}
.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-body h3 {
  color: #446078;
}
.confirm {
  float: left;
  font-family: 'Source Sans Pro SemiBold';
  background-color: #162A52;
  display: inline-block;
  border-radius: 0px;
  border: 1px solid #fff;
  margin-top: 10px;
  padding: 5px;
  text-align: center;
  color: #fff;
  width: 80px;
  cursor: pointer;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}