.Msgmodal,
.Msgmodal .modal-box {
  z-index: 900;
}
.Msgmodal .modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 0 0;
}
.Msgmodal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  overflow: auto;
}
.Msgmodal .modal-box {
  position: relative;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  animation-name: modalbox;
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0, 0, 0.3, 1.6);
}
.Msgmodal .modal-body {
  background: #fff;
  float: left;
  width: 100%;
  position: relative;
  padding: 22px 15px;
}
.Msgmodal .modal-body p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
.Msgmodal .close-modal {
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  right: 15px;
  top: 15px;
  font-size: 14px;
  color: #777;
  cursor: pointer;
}
.Msgmodal .buttonWrap {
  float: left;
  width: 100%;
  display: block;
  margin: 20px 0 0;
}
.Msgmodal .buttonWrap .Btn_blue {
  padding: 10px 30px;
}
.consentModelChk {
  position: absolute;
  opacity: 0;
}
.consentModelLabel input[type="checkbox"] ~ label:before {
  color: #fff;
  font-size: 10px;
  position: relative;
  top: -2px;
  left: 0;
}
.consentModelLabel input[type="checkbox"]:checked + label:before {
  opacity: 1;
}
.consentModelLabel {
  padding-left: 20px;
  position: relative;
  margin-bottom: 25px !important;
}
.consentModelLabel label {
  margin: 2px 0 0 -20px;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: #19b150;
  position: relative;
  left: -5px;
}
.consentModelBtn {
  display: inline-block;
  font-size: 15px;
  cursor: pointer;
  border-radius: 4px;
  background-color: #003b90;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 12px 26px;
  margin-right: 5px;
  font-weight: 700;
  border: 0;
}
.Msgmodal,
.Msgmodal .modal-box {
  z-index: 9999;
}
.vertical_alignment_helper {
  display: table;
  height: 100%;
  width: 100%;
}
.vertical_align_center {
  display: table-cell;
  vertical-align: middle;
}
.fa {
  font-family: fontawesome;
}
@-webkit-keyframes modalbox {
  0% {
    top: -250px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes modalbox {
  0% {
    top: -250px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
