#msgModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Add Animation */
  /* The Close Button */
}
#msgModal .msgmodal-content {
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  width: auto;
  max-width: 450px;
  border-radius: 10px;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
#msgModal .msgmodal-content p {
  font-size: 20px !important;
}
#msgModal .msgmodal-body {
  text-align: center;
}
#msgModal .msgmodal-body svg {
  width: 50px;
  height: 50px;
  margin: auto;
  display: block;
  margin-bottom: 20px;
}
#msgModal .msgmodal-body .bt-modals {
  text-align: center;
  margin: auto;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 4px;
  background: #81954e;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}
#msgModal .close {
  color: white;
  float: right;
  font-size: 36px;
  font-weight: bold;
}
#msgModal h5 {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}
#msgModal .close:focus,
#msgModal .close:hover {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
#msgModal .msgmodal-header {
  padding: 2px 10px 2px 16px;
  background-color: #116bb3;
  line-height: 36px;
  color: white;
}
#msgModal .msgmodal-body {
  padding: 15px 16px 30px;
  line-height: 20px;
  text-align: center;
}
#msgModal .msgmodal-body .bt-modals {
  background-color: #e83e28;
  margin-right: 10px;
  font-size: 20px;
  color: #ffffff;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  margin-top: 20px;
}
#msgModal .msgmodal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}
#msgModal svg {
  width: 100px;
  display: block;
  margin: 40px auto;
}
#msgModal .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
#msgModal .path.circle {
  animation: dash 0.9s ease-in-out;
}
#msgModal .path.line {
  stroke-dashoffset: 1000;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
#msgModal .path.check {
  stroke-dashoffset: -100;
  animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
.redborder:focus {
  outline: none !important;
  border-radius: 3px;
  box-shadow: 0 0 0 0.1rem red !important;
}/*# sourceMappingURL=msgModal.css.map */