@keyframes fwbMAAnimateTop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 300;
    opacity: 1
  }
}

@-webkit-keyframes fwbMAAnimateTop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 300;
    opacity: 1
  }
}

.fwbMACenterMiddle {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Modal Background */
.fwbMABG {
  display: none;
  position: fixed;
  z-index: 2147483636;
  padding-top: 0px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  margin-left: auto;
  margin-right: auto;
}

.fwbMABGInput {
  z-index: 2147483635 !important;
}

.fwbMABGAlert {
  z-index: 2147483637 !important;
}

/* Modal */
.fwbMA {
  min-width: 250px;
  max-width: 70vh;
  background-color: #fefefe;
  padding: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: fwbMAAnimateTop;
  -webkit-animation-duration: 0.4s;
  animation-name: fwbMAAnimateTop;
  animation-duration: 0.4s;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
}

.fwbMA-Error {
  background-color: #DC3545;
}

.fwbMATitle {
  padding: 10px;
  border-radius: .3rem;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  text-align: center;
  background-color: #0D6EFD;
}

.fwbMATitle i {
  /* font-size: 3rem; */
  line-height: 1;
  color: white;
}

.fwbMATitle span {
  display: block;
  font-weight: bold;
  color: white;
}

.fwbMATitleError {
  background-color: #DC3545 !important;
}

.fwbMATopXClose {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;

  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: .25rem;
  opacity: .5;
}

.fwbMAContent {
  padding: 10px;
  height: 100%;
  overflow: auto;
  max-height: 70vh;
  /* font-size: 0.8rem; */
}

.fwbMAFooter {
  text-align: center;
  padding: 10px 16px;
  color: white;
}

.fwbMABtn {
  cursor: pointer;
}